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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Основная информация о расширении
Название | 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 } } |