Skip to content

Instantly share code, notes, and snippets.

@e9x
Created May 21, 2023 01:41
Show Gist options
  • Save e9x/f1b75ee43277437e24b705c036549523 to your computer and use it in GitHub Desktop.
Save e9x/f1b75ee43277437e24b705c036549523 to your computer and use it in GitHub Desktop.
/**
* Krunker adblock, killfeed and chat hider, and red theme
*/
const style = document.createElement("style");
style.textContent = `* {
color: red !important;
}
#chatUI, #killFeed, #adCon, #aHolder, #aMerger, #aContainer, .endAHolder, #endAMerger, #endAContainer {
visibility: hidden !important;
}`;
document.addEventListener("DOMContentLoaded", () => {
document.head.append(style);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment