Skip to content

Instantly share code, notes, and snippets.

@David256
Created November 21, 2024 06:12
Show Gist options
  • Save David256/2325dc4719826322a6b1a11b8cf076d9 to your computer and use it in GitHub Desktop.
Save David256/2325dc4719826322a6b1a11b8cf076d9 to your computer and use it in GitHub Desktop.
This script does not help with skipping YouTube ads manually for PC browser
document.addEventListener('keydown', function(event) {
if (event.ctrlKey && event.code === 'Space') {
document.querySelector('video').currentTime = document.querySelector('video').duration;
event.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment