TigerKK写了个油猴脚本过CORS 中发帖

// ==UserScript==
// @name CORS Bypass for fetch
// @namespace kk.cors-bypass
// @version 1.0.0
// @description 使用 Tampermonkey GM_xmlhttpRequest 绕过 fetch CORS
// @match *://*/*
// @grant GM_xmlhttpRequest
// @grant unsafeWindow
// @connect *
// @run-at document-start
// ==/UserScript==

(function () {
'use strict';

const win = unsafeWindow...