Radarr and Sonarr for Plex

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

Was ist Radarr and Sonarr for Plex?

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

Erweiterungsscreenshots

screenshot

Radarr and Sonarr for Plex-Erweiterungs-CRX-Datei herunterladen

Laden Sie Radarr and 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

                                            

Grundlegende Informationen zur Erweiterung

Name Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
Offizielle URL https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Beschreibung View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Dateigröße 743 KB
Installationsanzahl 660
Aktuelle Version 1.0.2
Letztes Update 2017-06-08
Veröffentlichungsdatum 2017-06-08
Bewertung 2.75/5 Insgesamt 4 Bewertungen
Entwickler madsengellundt
Zahlungsart free
Erweiterungswebsite https://github.com/madslundt/RadarrSonarrPlex
Hilfeseite URL https://github.com/madslundt/RadarrSonarrPlex/issues
Unterstützte Sprachen 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
    }
}