Radarr and Sonarr for Plex

View and manage your movies and series in Radarr and Sonarr directly in the Plex app

Co to jest Radarr and Sonarr for Plex?

Radarr and Sonarr for Plex to rozszerzenie Chrome opracowane przez madsengellundt, a jego główną funkcją jest „View and manage your movies and series in Radarr and Sonarr directly in the Plex app”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Radarr and Sonarr for Plex

Pobierz pliki rozszerzeń Radarr and 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

                                            

Podstawowe informacje o rozszerzeniu

Nazwa Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
Oficjalny URL https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Opis View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Rozmiar pliku 743 KB
Liczba instalacji 660
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2017-06-08
Data Publikacji 2017-06-08
Ocena 2.75/5 Łącznie 4 Oceny
Deweloper madsengellundt
Typ Płatności free
Strona Rozszerzenia https://github.com/madslundt/RadarrSonarrPlex
Adres URL Strony Pomocy https://github.com/madslundt/RadarrSonarrPlex/issues
Obsługiwane Języki 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
    }
}