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
HoloTools Jetri Fix

請先在瀏覽器上安裝可以運行使用者自定義腳本的擴充功能
例如 Greasemonkey (FireFox) 或是 Tampermonkey (Chrome)
下面以Tampermonkey為例:

請點擊Tampermonkey圖示,在下拉式選單中選擇「新增腳本」
然後將下面的腳本內容全數複製貼上後,選擇檔案→儲存即可。

--

// ==UserScript==
// @name Hololive Jetri Fix
// @namespace jetri fix
// @version 0.1
// @description Fix multistreaming in .jetri
// @author Anonymous
// @include https://hololive.jetri.co/*
// @include https://nijisanji.jetri.co/*
// @run-at document-start
// @grant none
// ==/UserScript==

(function() {
'use strict';

localStorage.setItem('ruleOnePlayer', 0);
localStorage.setItem('rulePauseOther', 0);
})();

--