Plexify
Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
什么是Plexify?
Plexify是由mariotacke开发的Chrome扩展程序,该扩展的主要功能是“Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!”。
扩展截图
下载Plexify扩展crx文件
下载Plexify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Plexify |
ID | cgckffknepmgikkhnildjodfjobncckg |
官方URL | https://chromewebstore.google.com/detail/plexify/cgckffknepmgikkhnildjodfjobncckg |
简介 | Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more! |
文件大小 | 30.13 KB |
安装次数 | 743 |
当前版本 | 0.0.1 |
更新时间 | 2016-05-14 |
上架时间 | 2016-05-13 |
评分 | 4.00/5 共3次评分 |
开发者 | mariotacke |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/mariotacke/plexify |
支持的语言 | 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" ] } ] } |