Sonarr for Plex

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

Qu'est-ce que Sonarr for Plex ?

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

Captures d'Écran de l'Extension

screenshot

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

Téléchargez les fichiers d'extension 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

                        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                    

Informations de Base sur l'Extension

Nom Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
URL Officiel https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Description View and manage your shows in Sonarr directly in the Plex app
Taille du Fichier 68.06 KB
Nombre d'Installations 536
Version Actuelle 1.0.6
Dernière Mise à Jour 2018-01-14
Date de Publication 2018-01-14
Évaluation 2.71/5 Total 7 Évaluations
Développeur danbovey
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/danbovey/SonarrPlex
URL de la Page d'Aide https://github.com/danbovey/SonarrPlex/issues
Langues Prises en Charge 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
    }
}