雨课堂网页版操作

启用Enter发送弹幕

目前為 2020-03-23 提交的版本,檢視 最新版本

// ==UserScript==
// @name         雨课堂网页版操作
// @namespace    https://userscript.snomiao.com/
// @version      0.1
// @description  启用Enter发送弹幕
// @author       [email protected]
// @match        https://www.yuketang.cn/lesson/fullscreen/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var main = () => {
        var [box, btn] = [".send__input", ".send__btn"].map(e => document.querySelector(e));
        if (!box || !btn) return;
        box.addEventListener("keydown", e => (e.code == "Enter" && btn.click()));
        console.log("启用: Enter发送")
        document.removeEventListener("mouseup", main)
    }
    document.addEventListener("mouseup", main)
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址