Sonarr for Plex

View and manage your shows in Sonarr directly in the Plex app

Cos'è Sonarr for Plex?

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

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sonarr for Plex

Scarica i file di estensione 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

                        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                    

Informazioni di Base sull'Estensione

Nome Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
URL Ufficiale https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Descrizione View and manage your shows in Sonarr directly in the Plex app
Dimensione del File 68.06 KB
Conteggio Installazioni 536
Versione Corrente 1.0.6
Ultimo Aggiornamento 2018-01-14
Data di Pubblicazione 2018-01-14
Valutazione 2.71/5 Totale 7 Valutazioni
Sviluppatore danbovey
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/danbovey/SonarrPlex
URL della Pagina di Aiuto https://github.com/danbovey/SonarrPlex/issues
Lingue Supportate 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
    }
}