Skip to content

Instantly share code, notes, and snippets.

@maxlevy-rakuten
Created October 27, 2024 00:57
Show Gist options
  • Save maxlevy-rakuten/c902d88f9936ff5ddd2d5eb4b5c83618 to your computer and use it in GitHub Desktop.
Save maxlevy-rakuten/c902d88f9936ff5ddd2d5eb4b5c83618 to your computer and use it in GitHub Desktop.
break the glasspane
(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