您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
自動點擊按鈕,哪次沒滿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})}();