Sonarr for Plex

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

Co je Sonarr for Plex?

Sonarr for Plex je rozšíření Chrome vyvinuté danbovey, a jeho hlavní funkcí je „View and manage your shows in Sonarr directly in the Plex app“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Sonarr for Plex

Stáhněte si soubory rozšíření Sonarr for Plex ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
Oficiální URL https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Popis View and manage your shows in Sonarr directly in the Plex app
Velikost souboru 68.06 KB
Počet instalací 536
Aktuální Verze 1.0.6
Poslední Aktualizace 2018-01-14
Datum Vydání 2018-01-14
Hodnocení 2.71/5 Celkem 7 Hodnocení
Vývojář danbovey
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/danbovey/SonarrPlex
URL Stránky Nápovědy https://github.com/danbovey/SonarrPlex/issues
Podporované Jazyky 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
    }
}