Last active
December 6, 2023 14:41
-
-
Save dschep/e7e67c7f0051da271e5f5de0809d38bc to your computer and use it in GitHub Desktop.
Disable favicon updates
This file contains 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
javascript:(() => { | |
const observer = MutationObserver(({addedNodes, removedNodes}) => { | |
console.log("favicon change!", addedNodes, removedNodes); | |
}); | |
observer.observe(document.head, {childList: true}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment