Bilibli auto enable auto generator subtitle

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

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

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

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

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

您需要先安装一款用户脚本管理器扩展,例如 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);
})();