Created
October 27, 2024 00:57
-
-
Save maxlevy-rakuten/c902d88f9936ff5ddd2d5eb4b5c83618 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