我尝试在 GM_xmlhttpRequest 中发出一个同步为 false 的 http 请求,但似乎不起作用。
这是怎么做的?我的代码:
GM_xmlhttpRequest({
method: "GET",
url: "http://www.google.com/",
synchronous:false,
onload: function(xhr)
{
if(xhr.readyState == 4) {
r = xhr.responseText;
}
}
});
提前致谢!