Greasy Fork

Greasy Fork is available in English.

Bilibili Light Off

This script will change all elements' background to black when you click the Light Off button, including player controller.

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==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);
})();