bili字幕 - greasyfork.org

2023/9/19 01:20:15

目前為 2023-09-18 提交的版本,檢視 最新版本

// ==UserScript==
// @name        bili字幕 - greasyfork.org
// @namespace   Violentmonkey Scripts
// @match       https://www.bilibili.com/*/*
// @grant       none
// @version     1.0
// @author      -
// @description 2023/9/19 01:20:15
// @license MIT
// ==/UserScript==
const video = document.querySelector("video");

video.addEventListener("loadeddata", (event) => {
  const timer = setInterval(() => {
        if (document.querySelector(".bpx-player-control-bottom-right:has(*)")) {
            document.querySelector("[aria-label='字幕'] span")?.click();
          clearInterval(timer)
        }
    }, 500)
});