NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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);