Greasy Fork

Greasy Fork is available in English.

(秒过)2024年智慧中小学暑假教师研修秒过

(秒过)秒过2024年智慧中小学暑假教师研修,有问题可以联系我https://space.bilibili.com/15344563。其他人均为假冒,不要相信刷课平台。刷课效果可以见 https://www.bilibili.com/video/BV1pT4m1S7Cd 感谢@XiaoTong6666大佬提供的思路!

当前为 2024-07-22 提交的版本,查看 最新版本

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         (秒过)2024年智慧中小学暑假教师研修秒过
// @namespace    http://tampermonkey.net/
// @version      0.54
// @author       hydrachs
// @description  (秒过)秒过2024年智慧中小学暑假教师研修,有问题可以联系我https://space.bilibili.com/15344563。其他人均为假冒,不要相信刷课平台。刷课效果可以见 https://www.bilibili.com/video/BV1pT4m1S7Cd    感谢@XiaoTong6666大佬提供的思路!
// @license MIT
// @match        https://basic.smartedu.cn/*
// @match        https://www.smartedu.cn/*
// @match        https://teacher.vocational.smartedu.cn/*
// @match        https://core.teacher.vocational.smartedu.cn/*
// ==/UserScript==

(function() {
    'use strict';

    function runCodeInConsole(code) {
        var script = document.createElement('script');
        script.textContent = code;
        (document.head || document.documentElement).appendChild(script);
        script.remove();
    }

    document.addEventListener('click', function(event) {
        if (event.button === 0) {
            setTimeout(function() {
                runCodeInConsole(`document.querySelector("video").dispatchEvent(new Event("ended"))`);
            }, 300);
        }
    });
})();