-
-
Save canozal/0850c8dc314f499bd2c83e76ddfe6cd2 to your computer and use it in GitHub Desktop.
Move Netflix subtitles to top
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(() => { | |
const css = ` | |
.player-timedtext > div { | |
position: static !important; | |
text-align: center !important; | |
} | |
`; | |
const style = document.createElement("style"); | |
style.innerHTML = css; | |
document.body.appendChild(style); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment