YT ad skip

自動點擊跳過廣告

// ==UserScript==
// @name         YT ad skip
// @namespace    http://tampermonkey.net/
// @version      1.0
// @author       聖冰如焰
// @match        https://www.youtube.com/*
// @description  自動點擊跳過廣告
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(e => {
        let ad = document.getElementsByClassName('ytp-ad-skip-button');
        if (ad.length != 0) ad[0].click();
    },100)
    // Your code here...
})();