您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This script will change all elements' background to black when you click the Light Off button, including player controller.
// ==UserScript== // @name Bilibili Light Off // @namespace http://bilibili.com/ // @version 0.1 // @description This script will change all elements' background to black when you click the Light Off button, including player controller. // @author Guangyu Zhang // @include http://www.bilibili.com/video/av*/ // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle(".blo-black { background: black !important}"); var itemList = ['bilibili-player-video-control', 'bilibili-player-video-sendbar', 'bilibili-player-video-inputbar']; function toggleLight() { for (var i of itemList) { var ele = document.getElementsByClassName(i); if (ele.length === 0) { continue; } ele = ele[0]; if (ele.className.indexOf(' blo-black') > -1) ele.className = ele.className.replace(' blo-black', ''); else ele.className += ' blo-black'; } } var lightOffButton = document.getElementsByName("light_onoff"); function getLightOffButton() { if (lightOffButton.length === 0) { setTimeout(getLightOffButton, 1000); return; } lightOffButton = lightOffButton[0]; lightOffButton.addEventListener("click", toggleLight); } setTimeout(getLightOffButton, 1000); })();