Enable aria-live for bilibili.com Closed Caption

启用屏幕阅读器自动朗读 bilibili CC 字幕!

目前為 2021-01-22 提交的版本,檢視 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Enable aria-live for bilibili.com Closed Caption
// @namespace https://www.bitglow.cn/
// @version      0.1
// @description 启用屏幕阅读器自动朗读 bilibili CC 字幕!
// @author       好奇的 01
// @match        https://www.bilibili.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function setLiveRegions() {
        var el = document.querySelectorAll('.subtitle-wrap');
        for (var i = 0; i < el.length; i++) {
            el[i].setAttribute('aria-live', 'polite');
        }
return el.length;
    }

    function trySet() {
        if (setLiveRegions() > 0) {
            clearInterval(intervalID);
            console.log('aria-live attribute added successfully.');
        }
        if (time < 1) {
            clearInterval(intervalID);
            console.log('aria-live attribute added unsuccessfully.');
        }
        time--;
    }

    var time = 5;
    var intervalID =setInterval(trySet, 2000);
})();