Skip to content

Instantly share code, notes, and snippets.

@dschep
Last active December 6, 2023 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dschep/e7e67c7f0051da271e5f5de0809d38bc to your computer and use it in GitHub Desktop.
Save dschep/e7e67c7f0051da271e5f5de0809d38bc to your computer and use it in GitHub Desktop.
Disable favicon updates
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