- Seek to the end
- Click the Skip ad button
Add a bookmark to your browser with the URL in the bookmarklet.url
file.
Set name to ⏩
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