1

我正在编写一个 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 不是函数”

4

1 回答 1

3

你想念@grant GM_xmlhttpRequest

// @grant       GM_xmlhttpRequest

结果:开始完成发送

于 2015-03-30T09:39:53.080 回答