87
|
1 // ==UserScript==
|
|
2 // @name nebula subtitle style
|
109
|
3 // @namespace https://nanaya.net
|
87
|
4 // @match https://nebula.app/*
|
|
5 // @grant GM_addStyle
|
|
6 // @version 1.0.1
|
|
7 // @author nanaya
|
|
8 // @description Better subtitle styling
|
109
|
9 // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/nebula-subtitle-style.user.js
|
87
|
10 // ==/UserScript==
|
|
11
|
109
|
12 'use strict';
|
|
13
|
87
|
14 /* global GM_addStyle */
|
|
15 GM_addStyle(`
|
|
16 .vjs-text-track-cue * {
|
|
17 background: transparent !important;
|
|
18 text-shadow: 2px 2px 5px #000 !important;
|
|
19 }
|
108
|
20 `);
|