Devast.io - Auto Skipper for ads

try to take over the world!

  1. // ==UserScript==
  2. // @name Devast.io - Auto Skipper for ads
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.4
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://devast.io/
  8. // @match *://devast.io/*/
  9. // @grant none
  10. // @license GPL
  11. // ==/UserScript==
  12.  
  13. (() => {
  14. 'use strict';
  15. const s = [
  16. '.ympb_video_skip',
  17. '.ympb_video_skip_btn'
  18. ].join(',');
  19. setInterval(() => {
  20. for(const e of document.querySelectorAll(s)) e.click();
  21. }, 500);
  22. })();