Sonarr for Plex
View and manage your shows in Sonarr directly in the Plex app
Что такое Sonarr for Plex?
Sonarr for Plex - это расширение Chrome, разработанное danbovey, и его основная функция - "View and manage your shows in Sonarr directly in the Plex app".
Снимки экрана расширения
Скачать файл CRX расширения Sonarr for Plex
Скачайте файлы расширений Sonarr for Plex в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
View and manage your shows in Sonarr directly in the Plex app.
- Adds a button to the top navbar to open Sonarr
- View and add new shows, update your library within Plex
- View active downloads and activity Основная информация о расширении
| Название | |
| ID | mhkdnppjenmiejganphkmhdfjnikgnjc |
| Официальный URL | https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc |
| Описание | View and manage your shows in Sonarr directly in the Plex app |
| Размер файла | 68.06 KB |
| Количество установок | 536 |
| Текущая Версия | 1.0.6 |
| Последнее Обновление | 2018-01-14 |
| Дата публикации | 2018-01-14 |
| Рейтинг | 2.71/5 Всего 7 оценок |
| Разработчик | danbovey |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/danbovey/SonarrPlex |
| URL страницы помощи | https://github.com/danbovey/SonarrPlex/issues |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Sonarr for Plex",
"short_name": "Sonarr",
"description": "View and manage your shows in Sonarr directly in the Plex app",
"author": "Dan Bovey",
"version": "1.0.6",
"minimum_chrome_version": "36",
"permissions": [
"storage",
"background",
"*:\/\/app.plex.tv\/*",
"*:\/\/*\/"
],
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"content_scripts": [
{
"css": [
"css\/style.css"
],
"js": [
"js\/content.js"
],
"matches": [
"http:\/\/app.plex.tv\/*",
"https:\/\/app.plex.tv\/*"
]
}
],
"web_accessible_resources": [
"img\/Sonarr.svg"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |