Sonarr for Plex

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

Τι είναι το Sonarr for Plex;

Το Sonarr for Plex είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον danbovey, και η κύρια λειτουργία του είναι "View and manage your shows in Sonarr directly in the Plex app".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Sonarr for Plex

Λήψη αρχείων επέκτασης Sonarr for Plex σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
Επίσημο URL https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Περιγραφή View and manage your shows in Sonarr directly in the Plex app
Μέγεθος Αρχείου 68.06 KB
Αριθμός Εγκαταστάσεων 536
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2018-01-14
Ημερομηνία Δημοσίευσης 2018-01-14
Αξιολόγηση 2.71/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής danbovey
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/danbovey/SonarrPlex
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/danbovey/SonarrPlex/issues
Υποστηριζόμενες Γλώσσες 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
    }
}