gmfetch

A shim for using GM.xmlHttpRequest with a fetch-like API.

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.org/scripts/422172/903521/gmfetch.js

作者
PotatoDiet
版本
1.0
创建于
2021-02-22
更新于
2021-02-22
许可证
GPL-3.0

Usage

Metablock

@require https://greasyfork.org/scripts/422172-gmfetch/code/gmfetch.js
@grant   GM.xmlHttpRequest

Code

(async () => {
  // https://developer.mozilla.org/en-US/docs/Web/API/Response
  const res = await gmfetch("https://google.com");
  console.log(await res.text());
})();