Plexify
Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
What is Plexify?
Plexify is a Chrome extension developed by mariotacke, and its main feature is "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".
Extension Screenshots
Download Plexify Extension CRX File
Download Plexify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Plexify lets you connect to your Plex account to check if your library contains certain media while browsing popular websites like IMDb, Rotten Tomatoes, and more! To indicate that your library contains the media, Plexify adds a small, non-intrusive badge to the page. A must have for movie collectors and enthusiasts alike!
Extension Basic Information
Name | Plexify |
ID | cgckffknepmgikkhnildjodfjobncckg |
Official URL | https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg |
Description | Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more! |
File Size | 30.13 KB |
Installation Count | 743 |
Current Version | 0.0.1 |
Last Updated | 2016-05-14 |
Publish Date | 2016-05-13 |
Rating | 4.00/5 Total 3 Ratings |
Developer | mariotacke |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/mariotacke/plexify |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "homepage_url": "https:\/\/github.com\/mariotacke", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "scripts": [ "src\/background\/background.js" ], "persistent": true }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "__MSG_appName__", "default_popup": "src\/popup\/index.html" }, "permissions": [ "https:\/\/plex.tv\/users\/sign_in.xml", "https:\/\/plex.tv\/pms\/servers.xml" ], "content_scripts": [ { "matches": [ "http:\/\/www.imdb.com\/title\/*" ], "js": [ "src\/plugins\/imdb\/index.js" ] }, { "matches": [ "http:\/\/www.rottentomatoes.com\/m\/*" ], "js": [ "src\/plugins\/rottentomatoes\/index.js" ] } ] } |