t66y cleaner

t66y屏蔽10秒

  1. // ==UserScript==
  2. // @name t66y cleaner
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-02-17
  5. // @description t66y屏蔽10秒
  6. // @author You
  7. // @match *://t66y.com/*
  8. // @grant none
  9. // @license Apache License 2.0
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. window.addEventListener('DOMContentLoaded', (event) => {
  17. console.log("DOM fully loaded. Attempting to override r9aeadS.");
  18. if (window.r9aeadS) {
  19. console.log('r9aeadS exists, overriding it now.');
  20. window.r9aeadS = function() { console.log('r9aeadS has been successfully overridden.'); };
  21. } else {
  22. console.log('r9aeadS does not exist or cannot be overridden at this time.');
  23. }
  24. });
  25. })();