// ==UserScript== // @name 【灰度测试】B站直播 主播一键停播 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 需配合推流软件的串流延迟功能使用。若有人恶意发送违规弹幕导致回显违规弹幕,或者在直播某些网游的公屏发送违规内容时,可切换到开播设置页面通过快捷键一键关闭直播。 // @license BSD-3-Clause // @author 别问我是谁请叫我雷锋 // @match https://link.bilibili.com/p/center/index#/my-room/start-live // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.onkeyup = function (e) { console.log(e) ; if (e.key == 'z') { document.querySelector(".live-btn").click() } } })();