Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Auto Skip YouTube Ads
- // @version 1.0.0
- // @description Speed up and skip YouTube ads automatically
- // @author jso8910
- // @match *://*.youtube.com/*
- // @exclude *://*.youtube.com/subscribe_embed?*
- // ==/UserScript==
- setInterval(() => {
- const btn = document.querySelector('.videoAdUiSkipButton,.ytp-ad-skip-button')
- if (btn) {
- btn.click()
- }
- const ad = [...document.querySelectorAll('.ad-showing')][0];
- if (ad) {
- document.querySelector('video').playbackRate = 10;
- }
- }, 50)
Advertisement
Add Comment
Please, Sign In to add comment