滿18y
// ==UserScript==
// @icon https://www.eyny.com/favicon.ico?iLj
// @name 滿18
// @name:zh-CN 滿18
// @name:zh-TW 滿18
// @namespace eyny
// @description 滿18y
// @description:zh-TW 滿18y
// @description:zh-CN 滿18y
// @match https://*.eyny.com/forum-*
// @match https://*.eyny.com/thread-*
// @match https://*.eyny.com/forum.php?mod=*
// @grant none
// @version 2026-03-16 10:44
// @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);