Plex Mobile

Archmonger's plex modifications to support small screens https://github.com/Archmonger/Improved-Plex-Mobile-CSS

As of 2019-10-15. See the latest version.

// ==UserScript==
// @name         Plex Mobile
// @namespace    oracle.plex
// @version      0.2
// @description  Archmonger's plex modifications to support small screens https://github.com/Archmonger/Improved-Plex-Mobile-CSS
// @author       You
// @match        https://app.plex.tv/*
// @match        http://app.plex.tv/*
// @include      *:32400/web/*
// @grant        none
// ==/UserScript==

(function() {
    var script = document.createElement('script');
    script.src = 'https://cdn.rawgit.com/Archmonger/Improved-Plex-Mobile-CSS/master/plex_mobile.js';
    document.getElementsByTagName('head')[0].appendChild(script);

    var link = document.createElement('link');
    link.rel = 'stylesheet';
    link.href = 'https://cdn.rawgit.com/Archmonger/Improved-Plex-Mobile-CSS/master/plex_mobile.css';
    document.getElementsByTagName('head')[0].appendChild(link);
})();