markVIP

VIP for maxiang

  1. // ==UserScript==
  2. // @name markVIP
  3. // @namespace http://markVIP.taozhiyu.github.io/
  4. // @version 0.1
  5. // @description VIP for maxiang
  6. // @author 涛之雨
  7. // @match https://maxiang.io/*
  8. // @icon http://maxiang.io/favicon.ico
  9. // @require https://gf.qytechs.cn/scripts/455943-ajaxhooker/code/ajaxHooker.js?version=1124435
  10. // @grant none
  11. // @license WTFPL
  12. // ==/UserScript==
  13.  
  14. /* global ajaxHooker*/
  15. (function() {
  16. 'use strict';
  17. ajaxHooker.hook(request => {
  18. if (request.url.endsWith('/user')) {
  19. request.response = res => {
  20. const json = JSON.parse(res.responseText);
  21. json.vip={vip: '29999-12-31', days: 5201314, count: Math.floor(Math.random()*100), is_expired: false};
  22. res.responseText = JSON.stringify(json);
  23. };
  24. }
  25. });
  26. })();

QingJ © 2025

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