Sonarr for Plex

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

什么是Sonarr for Plex?

Sonarr for Plex是由danbovey开发的Chrome扩展程序,该扩展的主要功能是“View and manage your shows in Sonarr directly in the Plex app”。

扩展截图

screenshot

下载Sonarr for Plex扩展crx文件

下载Sonarr for Plex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Sonarr for Plex Sonarr for Plex
ID mhkdnppjenmiejganphkmhdfjnikgnjc
官方URL https://chromewebstore.google.com/detail/sonarr-for-plex/mhkdnppjenmiejganphkmhdfjnikgnjc
简介 View and manage your shows in Sonarr directly in the Plex app
文件大小 68.06 KB
安装次数 536
当前版本 1.0.6
更新时间 2018-01-14
上架时间 2018-01-14
评分 2.71/5 共7次评分
开发者 danbovey
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/danbovey/SonarrPlex
帮助页面URL https://github.com/danbovey/SonarrPlex/issues
支持的语言 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
    }
}