Ad Enabler

Skip the boring videos on YouTube and enjoy all the ads!

// ==UserScript==
// @name     		Ad Enabler
// @namespace       https://aleksuuu.github.io/
// @version  		1
// @grant    		none
// @description     Skip the boring videos on YouTube and enjoy all the ads!
// @include         https://www.youtube.com/watch* 
// @license         MIT
// ==/UserScript==

setInterval(function () { clickNextIfNoAd() }, 20);

function clickNextIfNoAd() {
  if (!document.querySelector("div.ad-showing")) {
    let nextArr = document.getElementsByClassName("ytp-next-button");
    nextArr[nextArr.length - 1].click();
  }
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址