Skip to content

Instantly share code, notes, and snippets.

@kayhadrin
Last active November 26, 2020 08:41
Show Gist options
  • Save kayhadrin/a3c5a0e2e10b898eec4c54c991b6f66e to your computer and use it in GitHub Desktop.
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.
// 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