// ==UserScript== // @name 口袋奇兵插件强制登陆 // @namespace https://docs.scriptcat.org/ // @version 0.1.0 // @description try to take over the world! // @author You // @match https://*/* // @grant none // @noframes // ==/UserScript== (function () { 'use strict'; setTimeout(() => { const inputs = document.querySelectorAll('input.disabled') inputs.forEach(item=>{ item.classList.remove('disabled') }) }, 10 * 1000) // Your code here... })();