Created
November 4, 2023 13:13
-
-
Save serbanghita/1d7a685402172a6eef69424ed766ea81 to your computer and use it in GitHub Desktop.
Add sound notification to Youtube Live chat
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
(() => { | |
var audio = new Audio('https://freesound.org/data/previews/235/235911_2391840-lq.mp3'); | |
audio.volume = 0.8; | |
audio.autoplay = false; | |
$('#chatframe').contentWindow.document.getElementById('item-scroller').addEventListener('scroll', function(obj) { | |
console.log(obj); | |
audio.play(); | |
}); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment