Skip to content

Instantly share code, notes, and snippets.

@canozal
Forked from elierotenberg/snippet.js
Created June 26, 2021 21:50
Show Gist options
  • Save canozal/0850c8dc314f499bd2c83e76ddfe6cd2 to your computer and use it in GitHub Desktop.
Save canozal/0850c8dc314f499bd2c83e76ddfe6cd2 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