Last active
November 26, 2020 08:41
-
-
Save kayhadrin/a3c5a0e2e10b898eec4c54c991b6f66e to your computer and use it in GitHub Desktop.
Automatically click "Yes" to Youtube Music's "Are you still listening prompts". Use your browser's debugging console (https://www.w3schools.com/js/js_debugging.asp) to execute this code.
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
// Automatically click "Yes" to Youtube Music's "Are you still listening prompts" | |
// Use your browser's debugging console (https://www.w3schools.com/js/js_debugging.asp) to execute this code. | |
setInterval(function() { | |
var button = document.querySelector('.ytmusic-you-there-renderer #button'); | |
button && button.click(); | |
}, 500) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment