Bilibli auto enable auto generator subtitle

B站,Bilibli 自动启用站内机翻字幕

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Bilibli auto enable  auto generator subtitle
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  B站,Bilibli 自动启用站内机翻字幕
// @author       newwoodbridge
// @match        https://www.bilibili.com/video/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=vite.dev
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const checkIsEnabled = ()=> {
        const dom = document.querySelector(`g[mask="url(#__lottie_element_617)"]`)
        return !!dom
    }

    const autoEnable = () => {
        setTimeout(() => {
            if(!checkIsEnabled()) {
                const icon =document.querySelector(".bpx-player-ctrl-btn.bpx-player-ctrl-subtitle .bpx-common-svg-icon")
                icon.click()
                console.log("bilibli auto generatored subtitle auto display feature is enabled!")
            }

        },2000)
    }

    autoEnable()

    const video = document.querySelector("#bilibili-player div.bpx-player-primary-area > div.bpx-player-video-area > div.bpx-player-video-perch video")


    const config = { attributes: true, childList: false, subtree: false };

    const callback = (mutationList, observer) => {
        for (const mutation of mutationList) {
            autoEnable()
        }
    };

    const observer = new MutationObserver(callback);
    observer.observe(video, config);
})();