├── .gitignore ├── LICENSE-GPLv3 ├── README.md ├── data ├── apis │ ├── omdb.js │ ├── rotten_tomatoes.js │ ├── themoviedb.js │ ├── trakt.js │ └── youtube.js ├── c3.min.js ├── css │ ├── c3.css │ ├── options.css │ ├── stats.css │ └── transmogrify.css ├── d3.min.js ├── main.js ├── options.html ├── options.js ├── plugins │ ├── actor_profiles.js │ ├── canistreamit.js │ ├── imdb.js │ ├── letterboxd.js │ ├── missing_episodes.js │ ├── random_picker.js │ ├── rotten_tomatoes.js │ ├── stats.js │ ├── themoviedb.js │ ├── trakt.js │ ├── tvdb.js │ └── youtube_trailer.js ├── promise.js ├── promise.min.js ├── resources │ ├── actor_profiles │ │ └── actor_no_image.png │ ├── api_keys │ │ └── .gitignore │ ├── background.png │ ├── icon.png │ ├── icon128.png │ ├── icon16.png │ ├── icon48.png │ ├── icon64.png │ ├── icon_transparent.png │ ├── imdb │ │ ├── imdb_logo.png │ │ └── imdb_star.png │ ├── letterboxd │ │ └── letterboxd_logo.png │ ├── loading_extension.gif │ ├── loading_stats.gif │ ├── rotten_tomatoes │ │ ├── rotten_tomatoes_certified.png │ │ ├── rotten_tomatoes_fresh.png │ │ ├── rotten_tomatoes_logo.png │ │ ├── rotten_tomatoes_rotten.png │ │ ├── rotten_tomatoes_spilled.png │ │ └── rotten_tomatoes_upright.png │ ├── themoviedb │ │ └── themoviedb_logo.png │ ├── trakt │ │ ├── trakt_episode_background.png │ │ ├── trakt_logo.png │ │ ├── trakt_love.png │ │ └── trakt_season_background.png │ └── tvdb │ │ └── tvdb_logo.png ├── stats.html ├── stats.js ├── stats_charts.js └── utils.js ├── lib └── main.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE-GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/LICENSE-GPLv3 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/README.md -------------------------------------------------------------------------------- /data/apis/omdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/apis/omdb.js -------------------------------------------------------------------------------- /data/apis/rotten_tomatoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/apis/rotten_tomatoes.js -------------------------------------------------------------------------------- /data/apis/themoviedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/apis/themoviedb.js -------------------------------------------------------------------------------- /data/apis/trakt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/apis/trakt.js -------------------------------------------------------------------------------- /data/apis/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/apis/youtube.js -------------------------------------------------------------------------------- /data/c3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/c3.min.js -------------------------------------------------------------------------------- /data/css/c3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/css/c3.css -------------------------------------------------------------------------------- /data/css/options.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/css/options.css -------------------------------------------------------------------------------- /data/css/stats.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/css/stats.css -------------------------------------------------------------------------------- /data/css/transmogrify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/css/transmogrify.css -------------------------------------------------------------------------------- /data/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/d3.min.js -------------------------------------------------------------------------------- /data/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/main.js -------------------------------------------------------------------------------- /data/options.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/options.html -------------------------------------------------------------------------------- /data/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/options.js -------------------------------------------------------------------------------- /data/plugins/actor_profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/actor_profiles.js -------------------------------------------------------------------------------- /data/plugins/canistreamit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/canistreamit.js -------------------------------------------------------------------------------- /data/plugins/imdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/imdb.js -------------------------------------------------------------------------------- /data/plugins/letterboxd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/letterboxd.js -------------------------------------------------------------------------------- /data/plugins/missing_episodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/missing_episodes.js -------------------------------------------------------------------------------- /data/plugins/random_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/random_picker.js -------------------------------------------------------------------------------- /data/plugins/rotten_tomatoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/rotten_tomatoes.js -------------------------------------------------------------------------------- /data/plugins/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/stats.js -------------------------------------------------------------------------------- /data/plugins/themoviedb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/themoviedb.js -------------------------------------------------------------------------------- /data/plugins/trakt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/trakt.js -------------------------------------------------------------------------------- /data/plugins/tvdb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/tvdb.js -------------------------------------------------------------------------------- /data/plugins/youtube_trailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/plugins/youtube_trailer.js -------------------------------------------------------------------------------- /data/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/promise.js -------------------------------------------------------------------------------- /data/promise.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/promise.min.js -------------------------------------------------------------------------------- /data/resources/actor_profiles/actor_no_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/actor_profiles/actor_no_image.png -------------------------------------------------------------------------------- /data/resources/api_keys/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /data/resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/background.png -------------------------------------------------------------------------------- /data/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon.png -------------------------------------------------------------------------------- /data/resources/icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon128.png -------------------------------------------------------------------------------- /data/resources/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon16.png -------------------------------------------------------------------------------- /data/resources/icon48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon48.png -------------------------------------------------------------------------------- /data/resources/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon64.png -------------------------------------------------------------------------------- /data/resources/icon_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/icon_transparent.png -------------------------------------------------------------------------------- /data/resources/imdb/imdb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/imdb/imdb_logo.png -------------------------------------------------------------------------------- /data/resources/imdb/imdb_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/imdb/imdb_star.png -------------------------------------------------------------------------------- /data/resources/letterboxd/letterboxd_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/letterboxd/letterboxd_logo.png -------------------------------------------------------------------------------- /data/resources/loading_extension.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/loading_extension.gif -------------------------------------------------------------------------------- /data/resources/loading_stats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/loading_stats.gif -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_certified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_certified.png -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_fresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_fresh.png -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_logo.png -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_rotten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_rotten.png -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_spilled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_spilled.png -------------------------------------------------------------------------------- /data/resources/rotten_tomatoes/rotten_tomatoes_upright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/rotten_tomatoes/rotten_tomatoes_upright.png -------------------------------------------------------------------------------- /data/resources/themoviedb/themoviedb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/themoviedb/themoviedb_logo.png -------------------------------------------------------------------------------- /data/resources/trakt/trakt_episode_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/trakt/trakt_episode_background.png -------------------------------------------------------------------------------- /data/resources/trakt/trakt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/trakt/trakt_logo.png -------------------------------------------------------------------------------- /data/resources/trakt/trakt_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/trakt/trakt_love.png -------------------------------------------------------------------------------- /data/resources/trakt/trakt_season_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/trakt/trakt_season_background.png -------------------------------------------------------------------------------- /data/resources/tvdb/tvdb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/resources/tvdb/tvdb_logo.png -------------------------------------------------------------------------------- /data/stats.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/stats.html -------------------------------------------------------------------------------- /data/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/stats.js -------------------------------------------------------------------------------- /data/stats_charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/stats_charts.js -------------------------------------------------------------------------------- /data/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/data/utils.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Transmogrify-for-Plex/Transmogrify-for-Plex-firefox/HEAD/package.json --------------------------------------------------------------------------------