Created
November 22, 2023 11:09
-
-
Save verfasor/2fd77fca4ca38a87d981f92e55142cf3 to your computer and use it in GitHub Desktop.
bminus.js
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
addEventListener("DOMContentLoaded", () => { | |
document.querySelectorAll('*').forEach(element => { | |
Array.from(element.childNodes).filter(node => node.nodeType === Node.TEXT_NODE).forEach(node => { | |
node.nodeValue = node.nodeValue | |
.replace(/ ʕ•ᴥ•ʔ/g, "") | |
.replace(/Made with/g, "powered by"); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment