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 madsengellundt द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "View and manage your movies and series in Radarr and Sonarr directly in the Plex app"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Radarr and Sonarr for Plex एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ URL | 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 } } |