Turns all Captions to white color and hides the primary captions to only show secondary captions, text translations, etc.
HIDIVE White Closed Captions - Secondary Text Only by joeguff
Details
Authorjoeguff
LicenseMIT
Categoryhidive.com
Created
Updated
Size551 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
- You may need to change line 1 from Q0 to Q1 or Q2 etc from time to time.
- This is what hides the primary captions.
- You can remove the span.Q0 style and this will simply show all captions in white.
- Edit the color to your liking!
Source code
/* ==UserStyle==
@name HIDIVE White Closed Captions - Secondary Text Only
@version 20241117.08.50
@namespace https://userstyles.world/user/Guffawaffle
@description Turns all Captions to white color and hides the "main" captions to only show things like text translation etc.
@author Guffawaffle
@license MIT
==/UserStyle== */
@-moz-document domain("hidive.com") {
span.Q0 {
visibility: hidden;
}
div[class^="doris-vtt-style-"] .ds-text-track__wrapper span[class^="Q"] {
color: white !important;
}
}