Sleazy Fork is available in English.

4 18

點擊按鈕。error 500 重整

  1. // ==UserScript==
  2. // @name 4 18
  3. // @icon https://www.eyny.com/favicon.ico?iLj
  4. // @namespace eyny
  5. // @match https://www.eyny.com/forum-*
  6. // @match https://www.eyny.com/thread-*
  7. // @match https://www.eyny.com/forum.php?mod=*
  8. // @grant none
  9. // @version 2024-09-04 10:26
  10. // @author qq
  11. // @description 點擊按鈕。error 500 重整
  12. // @license MIT
  13. // ==/UserScript==
  14. setTimeout(function(){
  15. let thx = document.querySelector('input[value*="Yes, I am."]');
  16. if (!!thx) {
  17. thx.click();
  18.  
  19. }
  20.  
  21. let title = document.querySelector('head title');
  22. title.innerHTML= title.innerHTML.replace('H', '-');
  23.  
  24. let error500 = document.querySelector('head title');
  25. if (error500.innerHTML.includes('500')) {
  26. location.reload();
  27. }
  28.  
  29. }, 1500);