Skip to content

Instantly share code, notes, and snippets.

@bnii
Created December 16, 2021 16:53
Show Gist options
  • Save bnii/07f097f2764c0e48acc8ed09fa876f1e to your computer and use it in GitHub Desktop.
Save bnii/07f097f2764c0e48acc8ed09fa876f1e to your computer and use it in GitHub Desktop.
TrackItForward
// ==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