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