Radarr and Sonarr for Plex

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

Cos'è Radarr and Sonarr for Plex?

Radarr and Sonarr for Plex è un'estensione di Chrome sviluppata da madsengellundt, e la sua funzione principale è "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Radarr and Sonarr for Plex

Scarica i file di estensione Radarr and Sonarr for Plex in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                                            

Informazioni di Base sull'Estensione

Nome Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
URL Ufficiale https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Descrizione View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Dimensione del File 743 KB
Conteggio Installazioni 660
Versione Corrente 1.0.2
Ultimo Aggiornamento 2017-06-08
Data di Pubblicazione 2017-06-08
Valutazione 2.75/5 Totale 4 Valutazioni
Sviluppatore madsengellundt
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/madslundt/RadarrSonarrPlex
URL della Pagina di Aiuto https://github.com/madslundt/RadarrSonarrPlex/issues
Lingue Supportate 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
    }
}