4 18

點擊按鈕。error 500 重整

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

You will need to install an extension such as Tampermonkey to install this script.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        4 18
// @icon        https://www.eyny.com/favicon.ico?iLj
// @namespace   eyny
// @match       https://www.eyny.com/forum-*
// @match       https://www.eyny.com/thread-*
// @match       https://www.eyny.com/forum.php?mod=*
// @grant       none
// @version     2024-09-04 10:26
// @author      qq
// @description 點擊按鈕。error 500 重整
// @license     MIT
// ==/UserScript==
setTimeout(function(){
  let thx = document.querySelector('input[value*="Yes, I am."]');
  if (!!thx) {
    thx.click();

  }

  let title = document.querySelector('head title');
  title.innerHTML= title.innerHTML.replace('H', '-');

  let error500 = document.querySelector('head title');
  if (error500.innerHTML.includes('500')) {
    location.reload();
  }

}, 1500);