Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
ما هو Radarr and Sonarr for Plex؟
Radarr and Sonarr for Plex هو إضافة Chrome تم تطويرها بواسطة madsengellundt، والميزة الرئيسية لها هي "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Radarr and Sonarr for Plex
قم بتنزيل ملفات الامتداد Radarr and Sonarr for Plex بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
معلومات أساسية عن التمديد
الاسم | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
الوصف | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
حجم الملف | 743 KB |
عدد التثبيتات | 660 |
النسخة الحالية | 1.0.2 |
آخر تحديث | 2017-06-08 |
تاريخ النشر | 2017-06-08 |
تقييم | 2.75/5 مجموع تقييمات 4 |
المطور | madsengellundt |
نوع الدفع | free |
موقع الإضافة | https://github.com/madslundt/RadarrSonarrPlex |
عنوان صفحة المساعدة | https://github.com/madslundt/RadarrSonarrPlex/issues |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Radarr and Sonarr for Plex", "short_name": "RadarrSonarr", "description": "View and manage your movies and series in Radarr and Sonarr directly in the Plex app", "author": "Mads Engel Lundt", "version": "1.0.2", "minimum_chrome_version": "36", "permissions": [ "storage", "background", "*:\/\/app.plex.tv\/*", "*:\/\/*\/" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "content_scripts": [ { "js": [ "index.js" ], "matches": [ "http:\/\/app.plex.tv\/*", "https:\/\/app.plex.tv\/*" ] } ], "web_accessible_resources": [ "img\/icon256_grayscaled.png" ], "options_ui": { "page": "options.html", "chrome_style": true } } |