Created
July 8, 2018 17:01
-
-
Save matyasfodor/3fd68810a2a4745f8271165f5058734a to your computer and use it in GitHub Desktop.
This file contains 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
// ==UserScript== | |
// @name Netflix Subtitles On Top | |
// @namespace https://www.netflix.com/ | |
// @version 0.1 | |
// @description places the subs to the top of the screen | |
// @author @matyasfodor | |
// @match https://www.netflix.com/* | |
// @grant GM_addStyle | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
GM_addStyle(` | |
.player-timedtext-text-container { | |
top: 10% !important; | |
} | |
`); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment