Skip to content

Instantly share code, notes, and snippets.

@maxint137
Forked from maxlevy-rakuten/no-glasspane.js
Created October 27, 2024 01:00
Show Gist options
  • Save maxint137/e6c97fac63e89c2b6f5f7c268b9dc02d to your computer and use it in GitHub Desktop.
Save maxint137/e6c97fac63e89c2b6f5f7c268b9dc02d 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