// ==UserScript== // @name New Userscript D7TF-2 // @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... })();