Skip to content

Instantly share code, notes, and snippets.

@elierotenberg
Created April 6, 2020 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save elierotenberg/8826108f6f09202019b54065f34c5ea8 to your computer and use it in GitHub Desktop.
Save elierotenberg/8826108f6f09202019b54065f34c5ea8 to your computer and use it in GitHub Desktop.
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