GM_xmlhttpRequest打破了脚本

时间:2015-03-23 20:40:50

标签: greasemonkey gm-xmlhttprequest

我正在编写一个Greasemonkey脚本,该脚本将在用户访问页面时运行,在页面上收集一些信息,然后将该信息发送到另一个位置进行记录。但是,只要脚本遇到对GM_xmlhttpRequest的调用,它就会停止。例如:

// ==UserScript==
// @name        GetProfileInfo
// @namespace   LinkedIn
// @include     https://www.linkedin.com/profile/view*
// @version     1
// @require     http://code.jquery.com/jquery-latest.js
// ==/UserScript==

console.log("start");
GM_xmlhttpRequest({
    method: "GET",
    url: "http://www.google.com",
    onload: function(response) {
        console.log("sent");
    }    
});
console.log("done");

输出只是“开始”。

我以为我可能不得不在@grant GM_xmlhttpRequest的头部,但当我这样做时,根本没有输出!

更新: 所以看来我确实想要@grant GM_xmlhttpRequest但是当我这样做时我得到错误“Components.utils.getObjectPrincipal不是函数”

1 个答案:

答案 0 :(得分:3)

你想念@grant GM_xmlhttpRequest

// @grant       GM_xmlhttpRequest

结果: 开始 DONE 发送