Plexify
Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!
ما هو Plexify؟
Plexify هو إضافة Chrome تم تطويرها بواسطة mariotacke، والميزة الرئيسية لها هي "Connect to your Plex account and see if you own media while browsing popular websites like IMDb, Rotten Tomatoes, and more!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Plexify
قم بتنزيل ملفات الامتداد Plexify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |