Radarr and Sonarr for Plex

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

Hvad er Radarr and Sonarr for Plex?

Radarr and Sonarr for Plex er en Chrome-udvidelse udviklet af madsengellundt, og dens hovedfunktion er "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".

Udvidelsesskærmbilleder

screenshot

Download Radarr and Sonarr for Plex-udvidelses-CRX-fil

Download Radarr and Sonarr for Plex-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                                            

Grundlæggende oplysninger om udvidelsen

Navn Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
Officiel URL https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
Beskrivelse View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Filstørrelse 743 KB
Antal Installationer 660
Nuværende Version 1.0.2
Senest Opdateret 2017-06-08
Udgivelsesdato 2017-06-08
Bedømmelse 2.75/5 Samlet 4 Bedømmelser
Udvikler madsengellundt
Betalingsmetode free
Udvidelseswebsted https://github.com/madslundt/RadarrSonarrPlex
Hjælpeside-URL https://github.com/madslundt/RadarrSonarrPlex/issues
Understøttede Sprog 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
    }
}