1

我正在尝试获取一个相当简单的脚本,该脚本可以保留一个值并在 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
4

2 回答 2

2

我有一个完整的带有 jQ​​uery 和 GM_ 代码的工作代码。试试这个:

// ==UserScript==
// @name           GM_ debug script
// @description    checking GM_setValue and GM_getValue with jQuery
// @namespace      eaposztrof
// @include        *
// @require     http://code.jquery.com/jquery-1.9.1.js
// @grant       GM_getValue // [grants][1]
// @grant       GM_setValue
// ==/UserScript==

function GM_getValueUTF8(key) { // UTF8 safe
    var value = GM_getValue(key);
    return (value && value.length) ? decodeURI(value) : '';
}

function GM_setValueUTF8(key, value) {
    GM_setValue(key, encodeURI(value));
}

    GM_setValueUTF8('asd','GM_setValue, GM_getValue working! press [Alt+X] to check with jQuery');
    alert(GM_getValueUTF8('asd'));

(function (){
    this.$ = this.jQuery = jQuery.noConflict(true);

    $(document).ready(function () {

        $ (document).keydown (function (e) {
            switch (e.keyCode) {
                case 88:    // "x"
                    if (e.altKey) {
                        setTimeout(function() { // [workaround][2]
                            GM_setValueUTF8('asd','GM_setValue, GM_getValue working inside jQuery');
                            alert(GM_getValueUTF8('asd'));
                        }, 0);
                    }
            }
        });
    });
}
//
) ();
于 2013-06-03T01:27:40.233 回答
1

这看起来像是一个可能的错误,请参阅“GM_setValue not working”等相关错误。

可能的行动:

  1. Firefox 9 即将过时。升级到 FF 12 或 FF 13 并查看问题是否仍然存在。
  2. 为 Scriptish 提交错误报告。
于 2012-06-14T20:52:18.620 回答