我正在尝试获取一个相当简单的脚本,该脚本可以保留一个值并在 GreaseMonkey 的继任者中检索它:Scriptish。
浏览器:Firefox 9.0
Scriptish:0.1.7
在 Windows 7 Ultimate 64 位上
// ==UserScript==
// @id testSerialization
// @name Test Serialization
// @version 1.0
// @namespace com.mobilvox.com
// @author
// @description
// @include http://www.google.com/
// @run-at document-end
// ==/UserScript==
GM_setValue("isCurrent", true);
GM_log("Is this script current? " + GM_getValue("isCurrent", false));
当我运行它时,我得到:
[10:29:59.074] GM_setValue is not defined
@Scratchpad:29
@ Scratchpad:29