gpt4 book ai didi

javascript - Tampermonkey GM.xmlHttpRequest 不是函数

转载 作者:行者123 更新时间:2023-12-04 09:42:38 26 4
gpt4 key购买 nike

我正在努力解决我的脚本问题。无论我尝试做什么 GM.xmlHttpRequest 都会抛出错误“不是函数”。

我的其余代码工作正常。

这是我的代码的删节版:

// ==UserScript==
// @name FUT20 Autobuyer Menu
// @namespace http://tampermonkey.net/
// @version 0.6
// @description try to take over the world!
// @author Rastor
// @match https://www.easports.com/uk/fifa/ultimate-team/web-app/*
// @match https://www.easports.com/fifa/ultimate-team/web-app/*
// @grant GM.xmlHttpRequest
// ==/UserScript==

try {
GM.xmlHttpRequest({
method: "GET",
url: "http://www.example.com/",
onload: function(response) {
alert(response.responseText);
}
});
}
catch (err) {
console.log(err);
}

最佳答案

在 Tampermonkey 中,权限和函数名称是“GM_xmlHttpRequest”(下划线不是点)!

关于javascript - Tampermonkey GM.xmlHttpRequest 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62260162/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com