Greasy Fork is available in English.

🥇【华医网小助手】完全免费|视频自动播放

自动视频

// ==UserScript==
// @name         🥇【华医网小助手】完全免费|视频自动播放
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  自动视频
// @author       华医网小助手
// @license      AGPL License
// @match        *://*.91huayi.com/course_ware/course_ware_polyv.aspx?*
// @match        *://*.91huayi.com/pages/exam.aspx?*
// @match        *://*.91huayi.com/pages/exam_result.aspx?*
// @match        *//*.wsglw.net/train/courseware/cc?*
// @match        *://*.91huayi.com/*
// @grant        none
// ==/UserScript==

(() => {
  let video = document.querySelector('video');

  setInterval(() => {
    if (video.paused) {
      video.play();
    }
  }, 1000);

  // 添加文字提示
  let tip = document.createElement('p');
  tip.style.fontSize = '50px';
  tip.style.color = 'red';
  tip.style.textAlign = 'center';
  tip.textContent = '大量合作或需要帮忙学习考试可联系v:study-088';
  document.body.appendChild(tip);
})();