Remove disabled all input

зачем оно нужно

// ==UserScript==
// @name         Remove disabled all input
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  зачем оно нужно
// @author       S30N1K
// @match        *://*/*
// @grant        none
// ==/UserScript==

(() => {
    document.onreadystatechange = () => {
        if (document.readyState === "complete") {
            setImmediate(() => {
                const allInput = document.querySelectorAll("input")
                for (const input of allInput) {
                    input.removeAttribute("disabled")
                }
            })
        }
    }
})()