Radarr and Sonarr for Plex
View and manage your movies and series in Radarr and Sonarr directly in the Plex app
What is Radarr and Sonarr for Plex?
Radarr and Sonarr for Plex is a Chrome extension developed by madsengellundt, and its main feature is "View and manage your movies and series in Radarr and Sonarr directly in the Plex app".
Extension Screenshots
Download Radarr and Sonarr for Plex Extension CRX File
Download Radarr and Sonarr for Plex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
Official URL | https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb |
Description | View and manage your movies and series in Radarr and Sonarr directly in the Plex app |
File Size | 743 KB |
Installation Count | 660 |
Current Version | 1.0.2 |
Last Updated | 2017-06-08 |
Publish Date | 2017-06-08 |
Rating | 2.75/5 Total 4 Ratings |
Developer | madsengellundt |
Payment Type | free |
Extension Website | https://github.com/madslundt/RadarrSonarrPlex |
Help Page URL | https://github.com/madslundt/RadarrSonarrPlex/issues |
Supported Languages | 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 } } |