hyperbeam VIP

unlock VIP

  1. // ==UserScript==
  2. // @name hyperbeam VIP
  3. // @namespace hyperbeam.taozhiyu.github.io
  4. // @version 0.1
  5. // @description unlock VIP
  6. // @author 涛之雨
  7. // @match *://hyperbeam.com/*
  8. // @icon https://hyperbeam.com/images/favicon.png
  9. // @require https://gf.qytechs.cn/scripts/455943-ajaxhooker/code/ajaxHooker.js?version=1124435
  10. // @grant none
  11. // @run-at document-start
  12. // @license WTFPL
  13. // ==/UserScript==
  14.  
  15. /* global ajaxHooker*/
  16. /* jshint esversion: 11 */
  17. (function() {
  18. 'use strict';
  19.  
  20. ;(()=>{
  21. const Date_=Date;
  22. Date=function(a){
  23. const d=new Date_(a);
  24. this.tao=a;
  25. this.zhiyu=d;
  26. return isNaN(d)?a:d;
  27. };
  28. Object.getOwnPropertyNames(Date_.prototype).map(a=>{
  29. Date.prototype[a]=function(){
  30. const d=new Date_(this.zhiyu)[a]();
  31. return isNaN(d)?this.tao:d;
  32. };
  33. });
  34. Date.now=Date_.now;
  35. })();
  36. ajaxHooker.hook(request => {
  37. if (request.url.includes('/private/graphql')) {
  38. request.response = res => {
  39. const a=res.json;
  40. if(a?.data?.me?.user){
  41. a.data.me.user.admin=true;
  42. a.data.me.subExpiryDate=true;
  43. a.data.me.billing={
  44. ...a.data.me.billing,
  45. renewalDate:"someday(Maybe)",
  46. billingDate:"2099",
  47. status: "ACTIVE",
  48. };
  49. a.data.me.subExpiryDate="2099";
  50. }
  51. res.json=a;
  52. };
  53. }
  54. });
  55. })();

QingJ © 2025

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