MCPcopy Index your code
hub / github.com/Tampermonkey/tampermonkey / storeScriptStorage

Function storeScriptStorage

src/background.js:3721–3727  ·  view source on GitHub ↗
(name, storage)

Source from the content-addressed store, hash-verified

3719};
3720
3721var storeScriptStorage = function(name, storage) {
3722 if (storage) {
3723 TM_storage.setValue(name + storeAppendix, storage);
3724 } else {
3725 TM_storage.deleteValue(name + storeAppendix);
3726 }
3727};
3728
3729var loadScriptByName = function(name) {
3730 var s = TM_storage.getValue(name, null);

Callers 3

removeUserScriptFunction · 0.85
doitFunction · 0.85
connectMsgHandlerFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…