# HG changeset patch # User nanaya # Date 1638558371 -32400 # Node ID dac3ba0cd960d2b0d8c81c7f39da4c3cbcc7c0d2 # Parent 2d9624e04134470fce272bcefc46e280f26c4cba Add nebula subtitle style diff -r 2d9624e04134 -r dac3ba0cd960 nebula-subtitle-style.user.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nebula-subtitle-style.user.js Sat Dec 04 04:06:11 2021 +0900 @@ -0,0 +1,18 @@ +// ==UserScript== +// @name nebula subtitle style +// @namespace https://myconan.net +// @match https://nebula.app/* +// @grant GM_addStyle +// @version 1.0.1 +// @author nanaya +// @description Better subtitle styling +// @downloadURL https://hg.myconan.net/ec-userscripts/raw-file/tip/nebula-subtitle-style.user.js +// ==/UserScript== + +/* global GM_addStyle */ +GM_addStyle(` + .vjs-text-track-cue * { + background: transparent !important; + text-shadow: 2px 2px 5px #000 !important; + } +`)