Devast.io - Auto Skipper for ads

try to take over the world!

目前为 2020-11-16 提交的版本。查看 最新版本

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