Sonarr for Plex
View and manage your shows in Sonarr directly in the Plex app
Co to jest Sonarr for Plex?
Sonarr for Plex to rozszerzenie Chrome opracowane przez danbovey, a jego główną funkcją jest „View and manage your shows in Sonarr directly in the Plex app”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Sonarr for Plex
Pobierz pliki rozszerzeń Sonarr for Plex w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Sonarr for Plex |
ID | mhkdnppjenmiejganphkmhdfjnikgnjc |
Oficjalny URL | https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc |
Opis | View and manage your shows in Sonarr directly in the Plex app |
Rozmiar pliku | 68.06 KB |
Liczba instalacji | 536 |
Aktualna Wersja | 1.0.6 |
Ostatnia Aktualizacja | 2018-01-14 |
Data Publikacji | 2018-01-14 |
Ocena | 2.71/5 Łącznie 7 Oceny |
Deweloper | danbovey |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/danbovey/SonarrPlex |
Adres URL Strony Pomocy | https://github.com/danbovey/SonarrPlex/issues |
Obsługiwane Języki | 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 } } |