Sonarr for Plex

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

What is Sonarr for Plex?

Sonarr for Plex is a Chrome extension developed by danbovey, and its main feature is "View and manage your shows in Sonarr directly in the Plex app".

Extension Screenshots

screenshot

Download Sonarr for Plex Extension CRX File

Download 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

                        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                    

Extension Basic Information

Name Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
Official URL https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
Description View and manage your shows in Sonarr directly in the Plex app
File Size 68.06 KB
Installation Count 536
Current Version 1.0.6
Last Updated 2018-01-14
Publish Date 2018-01-14
Rating 2.71/5 Total 7 Ratings
Developer danbovey
Email [email protected]
Payment Type free
Extension Website https://github.com/danbovey/SonarrPlex
Help Page URL https://github.com/danbovey/SonarrPlex/issues
Supported Languages 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
    }
}