AGEFans 允许控制台调试

允许在 AGEFans 使用网页控制台,去除无限debugger以及页面自动跳转

  1. /* eslint-disable no-multi-spaces */
  2.  
  3. // ==UserScript==
  4. // @name AGEFans 允许控制台调试
  5. // @name:zh-CN AGEFans 允许控制台调试
  6. // @name:en AGEFans anti-anti-debugger
  7. // @namespace AGEFans-anti-anti-debugger
  8. // @version 0.1
  9. // @description 允许在 AGEFans 使用网页控制台,去除无限debugger以及页面自动跳转
  10. // @description:zh-CN 允许在 AGEFans 使用网页控制台,去除无限debugger以及页面自动跳转
  11. // @description:en Allows you to use devtools in agefans
  12. // @author PY-DNG
  13. // @license WTFPL - see http://wtfpl.net/
  14. // @include https://www.age.tv/*
  15. // @include https://www.agefans.*
  16. // @include https://www.agemys.*
  17. // @icon none
  18. // @grant none
  19. // @run-at document-start
  20. // ==/UserScript==
  21.  
  22. (function __MAIN__() {
  23. 'use strict';
  24.  
  25. let logged = false;
  26. Object.defineProperty(window, 'devtoolsDetector', {
  27. get: function() {
  28. return window.test_backup;
  29. },
  30. set: function(v) {
  31. window.test_backup = new Proxy(v, {
  32. get: function(target, prop, reciever) {
  33. // 笑死,他居然还把launch错写成了lanuch
  34. if (prop === 'lanuch') {
  35. // Log once
  36. !logged && console.log('%c Fuck you, devtoolsDetector', 'color:#ff0000');
  37. !logged && console.log('%c devtoolsDetector >> passed', 'color:#00aa00');
  38. logged = true;
  39.  
  40. // Fake lanuch function
  41. return new Proxy(fake_lanuch, {
  42. get: function(target, prop, reciever) {
  43. const inherits = ['name', 'toString', 'toLocaleString'];
  44. return inherits.includes(prop) ? (typeof v.lanuch[prop] === 'function' ? () => (v.lanuch[prop]()) : v.lanuch[prop]) : fake_lanuch[prop];
  45. }
  46. });
  47.  
  48. function fake_lanuch() {/* Fuck you, devtoolsDetector */}
  49. }
  50. return v[prop];
  51. }
  52. });
  53. }
  54. });
  55.  
  56. /*
  57. const interval = setInterval(function() {
  58. if (typeof(devtoolsDetector) === 'object') {
  59. devtoolsDetector.stop();
  60. clearInterval(interval);
  61. }
  62. }, 500);
  63. */
  64. })();

QingJ © 2025

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