8 lines
111 B
JavaScript
8 lines
111 B
JavaScript
|
/**
|
||
|
* @param {string} storageKey
|
||
|
* @returns {string}
|
||
|
*/
|
||
|
function GM_getValue(storageKey) {
|
||
|
return '';
|
||
|
}
|