您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
绕过 mao.fan/mynat 的 check_limit 检测,但仍需登录(不可用)
当前为
// ==UserScript== // @name 猫点饭 NAT 检测次数限制破解 - mao.fan/mynat // @version 1.0 // @description 绕过 mao.fan/mynat 的 check_limit 检测,但仍需登录(不可用) // @author Nameless // @match https://mao.fan/mynat* // @grant unsafeWindow // @grant GM_xmlhttpRequest // @run-at document-start // @license MIT // @namespace https://gf.qytechs.cn/users/1442595 // ==/UserScript== (function() { 'use strict'; const originalFetch = unsafeWindow.fetch; unsafeWindow.fetch = function(url, options) { if (typeof url === 'string' && url.includes('/check_limit')) { return Promise.resolve({ ok: true, text: () => Promise.resolve(JSON.stringify({ allowed: true })), json: () => Promise.resolve({ allowed: true }), }); } return originalFetch.apply(this, arguments); }; })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址