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();
  }
}