Greasy Fork is available in English.
自动播放华文mooc的视频
// ==UserScript==// @name 华文慕课_视频自动播放// @namespace http://tampermonkey.net/// @version 0.1// @description 自动播放华文mooc的视频// @author kakasearch// @match http://www.chinesemooc.org/live/*// @grant none// ==/UserScript==(function() {'use strict';setTimeout(()=>{document.getElementsByTagName('video')[0].onended= ()=>{document.querySelector(" ul > li> img").parentElement.nextElementSibling.click()}},5000)// Your code here...})();