dev-sidecar/packages/gui/extra/scripts/global.script

12 lines
321 B
Plaintext

(function(){
const config = {};
window.__ds_global__={
GM_registerMenuCommand: () => {},
GM_unregisterMenuCommand: () => {},
GM_openInTab: () => {},
GM_getValue: (key) => config[key],
GM_setValue: (key, value) => { config[key] = value; },
GM_notification: () => {}
}
}();
console.log("ds_global completed")