comparison nebula-subtitle-style.user.js @ 87:dac3ba0cd960

Add nebula subtitle style
author nanaya <me@nanaya.pro>
date Sat, 04 Dec 2021 04:06:11 +0900
parents
children 2c4470b73ad9
comparison
equal deleted inserted replaced
86:2d9624e04134 87:dac3ba0cd960
1 // ==UserScript==
2 // @name nebula subtitle style
3 // @namespace https://myconan.net
4 // @match https://nebula.app/*
5 // @grant GM_addStyle
6 // @version 1.0.1
7 // @author nanaya
8 // @description Better subtitle styling
9 // @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/nebula-subtitle-style.user.js
10 // ==/UserScript==
11
12 /* global GM_addStyle */
13 GM_addStyle(`
14 .vjs-text-track-cue * {
15 background: transparent !important;
16 text-shadow: 2px 2px 5px #000 !important;
17 }
18 `)