我看到GM_getValue undefined error,但我确实授予GM_getValue
和GM_setValue
并定义了默认值。
示例代码:
// ==UserScript==
// @name SO_test
// @include https://stackoverflow.com/*
// @version 1
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
// Get jQuery thanks to this SO post:
// https://stackoverflow.com/a/3550261/2730823
function addJQuery(callback) {
var script = document.createElement("script");
script.setAttribute("src", "//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js");
script.addEventListener('load', function() {
var script = document.createElement("script");
script.textContent = "window.jQ=jQuery.noConflict(true);(" + callback.toString() + ")();";
document.body.appendChild(script);
}, false);
document.body.appendChild(script);
}
function main() {
$("#wmd-input").on("contextmenu", function(e) {
e.preventDefault();
console.log("GM_getValue: " + GM_getValue("extra_markdown", True));
});
}
addJQuery(main);
如果你右键点击"添加答案"安装上面的示例后,文本区域上的textarea,FF在控制台中显示GM_getValue is undefined
。这是为什么?
如何让GM功能起作用?
答案 0 :(得分:9)
该脚本正在尝试从目标页面范围内运行GM_getValue()
(注入代码); this is not allowed。
如果必须注入代码,请使用以下技术:
How to use GM_xmlhttpRequest in Injected Code?
或
How to call Greasemonkey's GM_ functions from code that must run in the target page scope?
利用GM_
函数。
然而,该脚本使用过时且危险的方式添加jQuery。不要做那样的事情。最坏情况,请使用this optimized, cross-platform method (second example)。但是,既然你使用的是Greasemonkey(或Tampermonkey),我可以编写脚本:更简单,更安全,更快速,更高效,如下所示:
// ==UserScript==
// @name SO_test
// @include https://stackoverflow.com/*
// @version 1
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
$("#wmd-input").on ("contextmenu", function (e) {
e.preventDefault ();
//-- Important: note the comma and the correct case for `true`.
console.log ("GM_getValue: ", GM_getValue ("extra_markdown", true) );
});