Greasy Fork is available in English.
挂机
// ==UserScript==
// @name 广州小学优课挂机
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 挂机
// @author k某某
// @match *://*.uooconline.com/*
// @match *://mooc1-1.chaoxing.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
setTimeout(kzj,3000);
function kzj() {
document.getElementsByTagName("video")[0].playbackRate=16;
setInterval(function (){ document.getElementsByClassName("vjs-play-control vjs-control vjs-button vjs-paused")[0].click()}, 1000);
}
})();