您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Extends the GM_setValue and GM_getValue functions for any javascript variable type.
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/5279/47932/GreaseMonkey_SuperValues.js
/*************************************************************************************** **************************************************************************************** ***** Super GM_setValue and GM_getValue.js ***** ***** This library extends the Greasemonkey GM_setValue and GM_getValue functions to ***** handle any javascript variable type. ***** ***** Add it to your GM script with: ***** ***** ***** Usage: ***** GM_SuperValue.set (varName, varValue); ***** var x = GM_SuperValue.get (varName, defaultValue); ***** ***** Test mode: ***** GM_SuperValue.runTestCases (bUseConsole); ***** */ var GM_SuperValue = new function() { var JSON_MarkerStr = 'json_val: '; var FunctionMarker = 'function_code: '; function ReportError(msg) { if (console && console.error) console.error(msg); else throw new Error(msg); } //--- Check that the environment is proper. if (typeof(GM_setValue) != "function") ReportError('This library requires Greasemonkey! GM_setValue is missing.'); if (typeof(GM_getValue) != "function") ReportError('This library requires Greasemonkey! GM_getValue is missing.'); /*--- set () GM_setValue (http://wiki.greasespot.net/GM_setValue) only stores: strings, booleans, and integers (a limitation of using Firefox preferences for storage). This function extends that to allow storing any data type. Parameters: varName String: The unique (within this script) name for this value. Should be restricted to valid Javascript identifier characters. varValue Any valid javascript value. Just note that it is not advisable to store too much data in the Firefox preferences. Returns: undefined */ this.set = function(varName, varValue) { if (typeof varName != "string") { ReportError('Illegal varName sent to GM_SuperValue.set(). Name: ' + varName + ' Value: ' + varValue); return; } if (/[^\w _-]/.test(varName)) { ReportError('Suspect, probably illegal, varName sent to GM_SuperValue.set(). Name: ' + varName + ' Value: ' + varValue); } switch (typeof varValue) { case 'undefined': ReportError('Illegal varValue sent to GM_SuperValue.set(). Name: ' + varName + ' Value: ' + varValue); break; case 'boolean': case 'string': //--- These 2 types are safe to store, as is. GM_setValue(varName, varValue); break; case 'number': /*--- Numbers are ONLY safe if they are integers. Note that hex numbers, EG 0xA9, get converted and stored as decimals, EG 169, automatically. That's a feature of JavaScript. Also, only a 32-bit, signed integer is allowed. So we only process +/-2147483647 here. */ if (varValue === parseInt(varValue) && Math.abs(varValue) < 2147483647) { GM_setValue(varName, varValue); break; } case 'object': /*--- For all other cases (but functions), and for unsafe numbers, store the value as a JSON string. */ var safeStr = JSON_MarkerStr + JSON.stringify(varValue); GM_setValue(varName, safeStr); break; case 'function': /*--- Functions need special handling. */ var safeStr = FunctionMarker + varValue.toString(); GM_setValue(varName, safeStr); break; default: ReportError('Unknown type in GM_SuperValue.set()! Name: ' + varName + ' DefaultValue: ' + varValue); break; } }; //-- End of set() /*--- get () GM_getValue (http://wiki.greasespot.net/GM_getValue) only retieves: strings, booleans, and integers (a limitation of using Firefox preferences for storage). This function extends that to allow retrieving any data type -- as long as it was stored with GM_SuperValue.set(). Parameters: varName String: The property name to get. See GM_SuperValue.set for details. defaultValue Optional. Any value to be returned, when no value has previously been set. Returns: When this name has been set... The variable or function value as previously set. When this name has not been set, and a default is provided... The value passed in as a default When this name has not been set, and default is not provided... undefined */ this.get = function(varName, defaultValue) { if (typeof varName != "string") { ReportError('Illegal varName sent to GM_SuperValue.get(). Name: ' + varName + ' DefaultValue: ' + defaultValue); return; } if (/[^\w _-]/.test(varName)) { ReportError('Suspect, probably illegal, varName sent to GM_SuperValue.get(). Name: ' + varName + ' DefaultValue: ' + defaultValue); } //--- Attempt to get the value from storage. var varValue = GM_getValue(varName); if (typeof varValue == "undefined") return defaultValue; //--- We got a value from storage. Now unencode it, if necessary. if (typeof varValue == "string") { //--- Is it a JSON value? var regxp = new RegExp('^' + JSON_MarkerStr + '(.+)$'); var m = varValue.match(regxp); if (m && m.length > 1) { varValue = JSON.parse(m[1]); return varValue; } //--- Is it a function? var regxp = new RegExp('^' + FunctionMarker + '((?:.|\n|\r)+)$'); var m = varValue.match(regxp); if (m && m.length > 1) { varValue = eval('(' + m[1] + ')'); return varValue; } } return varValue; }; //-- End of get() };