GM_setValue не определено
Я пытаюсь получить довольно простой скрипт, который сохраняет значение и возвращает его в преемнике GreaseMonkey: Scriptish.
Браузер: Firefox 9.0
Скрипт: 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
2 ответа
Решение
Это похоже на возможную ошибку, смотрите связанные ошибки, такие как "GM_setValue не работает".
Возможные действия:
- Firefox 9 устаревает. Обновите до FF 12 или FF 13 и посмотрите, сохраняется ли проблема.
- Подайте отчет об ошибке для Scriptish.
У меня есть полный рабочий код с кодами jQuery и 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);
}
}
});
});
}
//
) ();