您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
VIP for maxiang
当前为
// ==UserScript== // @name markVIP // @namespace http://markVIP.taozhiyu.github.io/ // @version 0.1 // @description VIP for maxiang // @author 涛之雨 // @match https://maxiang.io/* // @icon http://maxiang.io/favicon.ico // @require https://gf.qytechs.cn/scripts/455943-ajaxhooker/code/ajaxHooker.js?version=1124435 // @grant none // @license WTFPL // ==/UserScript== /* global ajaxHooker*/ (function() { 'use strict'; ajaxHooker.hook(request => { if (request.url.endsWith('/user')) { request.response = res => { const json = JSON.parse(res.responseText); json.vip={vip: '29999-12-31', days: 5201314, count: Math.floor(Math.random()*100), is_expired: false}; res.responseText = JSON.stringify(json); }; } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址