Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
Co je Radarr and Sonarr for Plex?
Radarr and Sonarr for Plex je rozšíření Chrome vyvinuté madsengellundt, a jeho hlavní funkcí je „View and manage your movies and series in Radarr and Sonarr directly in the Plex app“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Radarr and Sonarr for Plex
Stáhněte si soubory rozšíření Radarr and 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í
Základní Informace o Rozšíření
Název | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
Oficiální URL | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
Popis | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
Velikost souboru | 743 KB |
Počet instalací | 660 |
Aktuální Verze | 1.0.2 |
Poslední Aktualizace | 2017-06-08 |
Datum Vydání | 2017-06-08 |
Hodnocení | 2.75/5 Celkem 4 Hodnocení |
Vývojář | madsengellundt |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/madslundt/RadarrSonarrPlex |
URL Stránky Nápovědy | https://github.com/madslundt/RadarrSonarrPlex/issues |
Podporované Jazyky | 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 } } |