跨域助手

简单的绕过 CORS 限制的脚本

  1. // ==UserScript==
  2. // @name CORS Helper
  3. // @name:zh-CN 跨域助手
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1.2
  6. // @description A simple script that helps bypass CORS restrictions
  7. // @description:zh-CN 简单的绕过 CORS 限制的脚本
  8. // @author PRO-2684
  9. // @match none
  10. // @icon https://www.tampermonkey.net/favicon.ico
  11. // @license gpl-3.0
  12. // @grant GM.xmlHttpRequest
  13. // @grant unsafeWindow
  14. // @connect *
  15. // @require https://cdn.jsdelivr.net/npm/@trim21/gm-fetch@0.2.3
  16. // ==/UserScript==
  17.  
  18. (function() {
  19. 'use strict';
  20. unsafeWindow.GM_fetch = GM_fetch;
  21. })();

QingJ © 2025

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