YT ad skip

自動點擊跳過廣告

  1. // ==UserScript==
  2. // @name YT ad skip
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @author 聖冰如焰
  6. // @match https://www.youtube.com/*
  7. // @description 自動點擊跳過廣告
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. setInterval(e => {
  14. let ad = document.getElementsByClassName('ytp-ad-skip-button');
  15. if (ad.length != 0) ad[0].click();
  16. },100)
  17. // Your code here...
  18. })();
  19.