GM_fetch

fetch pollyfill using GM_xmlhttpRequest

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/421384/1134973/GM_fetch.js

作者
nyarau
版本
0.0.1.20230104124032
建立日期
2021-02-07
更新日期
2023-01-04
尺寸
792 位元組
授權條款
未知

fetch pollyfill using GM_xmlhttpRequest, not yet 100% replication of fetch API (eg. errors)

Don't forget to add permissions

// @grant    GM_xmlhttpRequest
// @connect  api.example.com

Example

GM_fetch("https://api.example.com/favicon.png", {
    method: 'POST',
    body: JSON.stringify({message: "hello world"}),
    headers: { 'Content-Type': 'application/json' }
}).then(resp=>resp.blob()).then(blob=>{
    open(URL.createObjectURL(blob), "_blank")
})

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址