Greasy Fork is available in English.
每隔15秒自动滚动鼠标滚轮,仅在长江雨课堂下执行
当前为
// ==UserScript==
// @license MIT
// @name Auto Scroll for Changjiang Yuketang
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 每隔15秒自动滚动鼠标滚轮,仅在长江雨课堂下执行
// @author Your Name
// @match https://changjiang.yuketang.cn/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// 定义滚动函数
function scrollPage() {
window.scrollBy(0, 100); // 垂直滚动100像素
}
// 设置间隔时间(15秒)
const intervalTime = 15000; // 15秒
// 每隔15秒滚动一次
setInterval(scrollPage, intervalTime);
})();