Sonarr for Plex

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

O que é Sonarr for Plex?

Sonarr for Plex é uma extensão do Chrome desenvolvida por danbovey, e sua principal característica é "View and manage your shows in Sonarr directly in the Plex app".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Sonarr for Plex

Baixe arquivos de extensão Sonarr for Plex no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
URL Oficial https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Descrição View and manage your shows in Sonarr directly in the Plex app
Tamanho do Arquivo 68.06 KB
Contagem de Instalações 536
Versão Atual 1.0.6
Última Atualização 2018-01-14
Data de Publicação 2018-01-14
Classificação 2.71/5 Total de 7 Avaliações
Desenvolvedor danbovey
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/danbovey/SonarrPlex
URL da Página de Ajuda https://github.com/danbovey/SonarrPlex/issues
Idiomas Suportados 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
    }
}