2023/9/19 01:20:15
// ==UserScript==
// @name bili字幕 - greasyfork.org
// @namespace Violentmonkey Scripts
// @match https://www.bilibili.com/*/*
// @grant none
// @version 1.0.1
// @author -
// @description 2023/9/19 01:20:15
// @license MIT
// ==/UserScript==
const video = document.querySelector("video");
window.onload=function(){
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)
}
)
}