FuckingTest

try to take over the world!

  1. // ==UserScript==
  2. // @name FuckingTest
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author Wangxin
  7. // @match http://www.uooconline.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function () {
  12. 'use strict';
  13.  
  14. function init() {
  15. document.getElementsByTagName('video')[0].volume = 0;
  16. document.getElementsByTagName('video')[0].playbackRate = 2;
  17. setInterval(function () {
  18. var videoButton = document.getElementsByClassName("vjs-big-play-button animated fadeIn")[0];
  19. videoButton.click()
  20. },1000);
  21. }
  22.  
  23. setTimeout(init, 1000);
  24.  
  25.  
  26.  
  27.  
  28. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址