Sonarr for Plex

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

Was ist Sonarr for Plex?

Sonarr for Plex ist eine Chrome-Erweiterung, die von danbovey entwickelt wurde, und ihr Hauptmerkmal ist "View and manage your shows in Sonarr directly in the Plex app".

Erweiterungsscreenshots

screenshot

Sonarr for Plex-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sonarr for Plex-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
Offizielle URL https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Beschreibung View and manage your shows in Sonarr directly in the Plex app
Dateigröße 68.06 KB
Installationsanzahl 536
Aktuelle Version 1.0.6
Letztes Update 2018-01-14
Veröffentlichungsdatum 2018-01-14
Bewertung 2.71/5 Insgesamt 7 Bewertungen
Entwickler danbovey
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/danbovey/SonarrPlex
Hilfeseite URL https://github.com/danbovey/SonarrPlex/issues
Unterstützte Sprachen 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
    }
}