Move Netflix subtitles to top
(() => { | |
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