Created
December 16, 2021 16:53
-
-
Save bnii/07f097f2764c0e48acc8ed09fa876f1e to your computer and use it in GitHub Desktop.
TrackItForward
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TrackInTheFuture | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @author You | |
// @match https://4datrackit.bca.hu/tracker | |
// @icon https://www.google.com/s2/favicons?domain=bca.hu | |
// @grant none | |
// @require https://cdn.jsdelivr.net/npm/@violentmonkey/dom@1 | |
// @require https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js | |
// ==/UserScript== | |
VM.observe(document.body, () => { | |
for (const node of document.querySelectorAll('.Mui-disabled')) { | |
node.disabled=false; | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment