Skip to content

Instantly share code, notes, and snippets.

@matyasfodor
Created July 8, 2018 17:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matyasfodor/3fd68810a2a4745f8271165f5058734a to your computer and use it in GitHub Desktop.
Save matyasfodor/3fd68810a2a4745f8271165f5058734a to your computer and use it in GitHub Desktop.
// ==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