crazily play

try to take over the world!

  1. // ==UserScript==
  2. // @name crazily play
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description try to take over the world!
  6. // @author shifan
  7. // @match http://mooc1.chaoxing.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. window.setInterval(function () {
  14. var iframe1 = document.getElementsByTagName('iframe')[0]
  15. var iframe2 = iframe1.contentDocument.getElementsByTagName('iframe')[0]
  16. var video = iframe2.contentDocument.getElementsByTagName('video')[0]
  17. video.play()
  18. video.playbackRate = 16
  19. }, 100)
  20. })();

QingJ © 2025

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