-
-
Save maxint137/e6c97fac63e89c2b6f5f7c268b9dc02d to your computer and use it in GitHub Desktop.
break the glasspane
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
(function () { | |
"use strict"; | |
setInterval(() => { | |
const nagscreen = document.getElementById("nagscreen"); | |
if (nagscreen) { | |
nagscreen.remove(); | |
} | |
document | |
.querySelectorAll(".glasspane") | |
.forEach((element) => element.remove()); | |
document.querySelectorAll(".tooltip").forEach((element) => { | |
element.style.fontSize = "16px"; | |
}); | |
}, 3000); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment