Radarr and Sonarr for Plex

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

Qu'est-ce que Radarr and Sonarr for Plex ?

Radarr and Sonarr for Plex est une extension Chrome développée par madsengellundt, et sa fonction principale est "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Radarr and Sonarr for Plex

Téléchargez les fichiers d'extension Radarr and Sonarr for Plex au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
URL Officiel https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Description View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Taille du Fichier 743 KB
Nombre d'Installations 660
Version Actuelle 1.0.2
Dernière Mise à Jour 2017-06-08
Date de Publication 2017-06-08
Évaluation 2.75/5 Total 4 Évaluations
Développeur madsengellundt
Type de Paiement free
Site Web de l'Extension https://github.com/madslundt/RadarrSonarrPlex
URL de la Page d'Aide https://github.com/madslundt/RadarrSonarrPlex/issues
Langues Prises en Charge 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
    }
}