-
Notifications
You must be signed in to change notification settings - Fork 0
/
修改弹幕流基础件.user.js
34 lines (31 loc) · 1.17 KB
/
修改弹幕流基础件.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// ==UserScript==
// @name 修改弹幕流基础件
// @version 0.3
// @namespace https://shugen002.github.io/userscript
// @description 修改直播弹幕流基础件
// @license MIT
// @author Shugen002
// @match https://live.bilibili.com/*
// @match https://live.bilibili.com/blanc/*
// @exclude https://live.bilibili.com/p/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant none
// @updateURL https://github.com/shugen002/userscript/raw/master/%E4%BF%AE%E6%94%B9%E5%BC%B9%E5%B9%95%E6%B5%81%E5%9F%BA%E7%A1%80%E4%BB%B6.user.js
// @downloadURL https://github.com/shugen002/userscript/raw/master/%E4%BF%AE%E6%94%B9%E5%BC%B9%E5%B9%95%E6%B5%81%E5%9F%BA%E7%A1%80%E4%BB%B6.user.js
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
window.__GREAT_TOILET__ = function (item){
if(window.$$danmuPatcher){
try{
window.$$danmuPatcher.forEach((e)=>{
e(item)
})
}catch(e){
console.error("执行修改时出现错误",e)
}
}
}
return;
})();