nire0510 / Youtube SkipAd

// ==UserScript==
// @name         Youtube SkipAd
// @namespace    http://nirelbaz.com/
// @version      0.1
// @description  Automatically skips ads after 5 seconds
// @author       Nir Elbaz
// @match        https://www.youtube.com/*
// @grant        none
// ==/UserScript==

window.setInterval(
  function () {
    var elmButton = document.querySelector('.videoAdUiSkipButton');
    
    if (elmButton) {
      elmButton.click();
    }
  },
3000);