Greasy Fork is available in English.
A shim for using GM.xmlHttpRequest with a fetch-like API.
此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js
@require https://greasyfork.org/scripts/422172-gmfetch/code/gmfetch.js
@grant GM.xmlHttpRequest
(async () => {
// https://developer.mozilla.org/en-US/docs/Web/API/Response
const res = await gmfetch("https://google.com");
console.log(await res.text());
})();