Skip to content

Instantly share code, notes, and snippets.

@schmich
Created September 20, 2018 04:53
Show Gist options
  • Save schmich/4ca2698f76be8d1238e646efce16a1ae to your computer and use it in GitHub Desktop.
Save schmich/4ca2698f76be8d1238e646efce16a1ae to your computer and use it in GitHub Desktop.
Cookie clicker audio notification
(new MutationObserver(e => {
if (e && e[0] && e[0].addedNodes && e[0].addedNodes.length > 0) {
if (!window.cookieSound) {
window.cookieSound = new Audio();
window.cookieSound.src = 'https://github.com/schmich/marinara/raw/master/src/audio/f62b45bc.mp3';
}
window.cookieSound.play();
}
})).observe(document.getElementById('shimmers'), { childList: true });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment