Radarr and Sonarr for Plex

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

¿Qué es Radarr and Sonarr for Plex?

Radarr and Sonarr for Plex es una extensión de Chrome desarrollada por madsengellundt, y su función principal es "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Radarr and Sonarr for Plex

Descarga archivos de extensión Radarr and Sonarr for Plex en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                                            

Información Básica de la Extensión

Nombre Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
URL Oficial https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Descripción View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Tamaño del Archivo 743 KB
Cantidad de Instalaciones 660
Versión Actual 1.0.2
Última Actualización 2017-06-08
Fecha de Publicación 2017-06-08
Calificación 2.75/5 Total de 4 Calificaciones
Desarrollador madsengellundt
Tipo de Pago free
Sitio Web de la Extensión https://github.com/madslundt/RadarrSonarrPlex
URL de la Página de Ayuda https://github.com/madslundt/RadarrSonarrPlex/issues
Idiomas Soportados 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
    }
}