返回首頁 

Greasy Fork is available in English.

自動點擊4Gamers已滿18歲按鈕

自動點擊按鈕,哪次沒滿18歲

// ==UserScript==// @name         自動點擊4Gamers已滿18歲按鈕// @namespace    http://tampermonkey.net/// @version      0.5// @description  自動點擊按鈕,哪次沒滿18歲// @author       鮪魚大師// @match        https://www.4gamers.com.tw/*// @grant        none// @license      MIT// ==/UserScript==!function(){"use strict";let e=0;async function t(e){return new Promise((t=>setTimeout(t,e)))}new MutationObserver((async function(n,o){for(const c of n){const n=document.querySelector(".text-white.bg-black.border-black");if(n&&(n.click(),o.disconnect()),e++,e>=3)return void(e=0);await t(100)}})).observe(document.documentElement,{childList:!0,subtree:!0})}();