Mercurial > ec-userscripts
view nebula-subtitle-style.user.js @ 138:76e8b47bbb03 default tip
[lashinbang-always-consent] check for login state
It's now required to turn off age check limit.
author | nanaya <me@nanaya.net> |
---|---|
date | Tue, 07 Jan 2025 16:07:50 +0900 |
parents | ef21ef445fc6 |
children |
line wrap: on
line source
// ==UserScript== // @name nebula subtitle style // @namespace https://nanaya.net // @match https://nebula.app/* // @grant GM_addStyle // @version 1.0.1 // @author nanaya // @description Better subtitle styling // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/nebula-subtitle-style.user.js // ==/UserScript== 'use strict'; /* global GM_addStyle */ GM_addStyle(` .vjs-text-track-cue * { background: transparent !important; text-shadow: 2px 2px 5px #000 !important; } `);