Greasy Fork is available in English.

BILIBILI播放条加强版

配合https://userstyles.org/styles/143441/bilibili-2b使用

// ==UserScript==
// @name         BILIBILI播放条加强版
// @namespace    http://tampermonkey.net/
// @version      5.5
// @description  配合https://userstyles.org/styles/143441/bilibili-2b使用
// @author       hearinleaf
// @match        *://www.bilibili.com/*
// @grant        none
// @license      MIT License
// ==/UserScript==

window.addEventListener("load", function () {//添加load事件
    console.log("load执行");
    var codex = ['天','地','不','仁','以','万','物','为','刍','狗'] , index = -1;
    setInterval(function(){
        index++;
        index = index > codex.length - 1 ? 0 : index;
        document.getElementsByClassName('bpui-slider-handle')[0].innerHTML = codex[index];
    }, 3200);
 }, false);