12 lines
321 B
Plaintext
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") |