fast-forward-youtube-ads

⏩ Bookmarklet for YouTube ads with two JavaScript function calls only

UNLICENSE License

Stars
4

Bookmarklet to fast-forward YouTube ads

  1. Seek to the end
  2. Click the Skip ad button

Usage

Add a bookmark to your browser with the URL in the bookmarklet.url file. Set name to ⏩

Source code

var skipButton = document.querySelector("[id^=skip-button].ytp-skip-ad-button");
if (skipButton !== null) {
    skipButton.click();
} else {
    var video = document.querySelector("video.html5-main-video[src]");
    video.currentTime = video.duration - 1;
    video.playbackRate = 2;
}

Made with chriszarate/bookmarkleter

Related Projects