Radarr and Sonarr for Plex

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

什麼是Radarr and Sonarr for Plex?

Radarr and Sonarr for Plex是由madsengellundt開發的Chrome擴展程式,該擴展的主要功能是“View and manage your movies and series in Radarr and Sonarr directly in the Plex app”。

擴展截圖

screenshot

下載Radarr and Sonarr for Plex擴展crx文件

下載Radarr and Sonarr for Plex擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                                            

擴展基本資訊

名稱 Radarr and Sonarr for Plex Radarr and Sonarr for Plex
ID naofhcnmmeadbnonficeccmbfibchcmb
官方網址 https://chromewebstore.google.com/detail/radarr-and-sonarr-for-ple/naofhcnmmeadbnonficeccmbfibchcmb
簡介 View and manage your movies and series in Radarr and Sonarr directly in the Plex app
檔案大小 743 KB
安裝次數 660
目前版本 1.0.2
更新時間 2017-06-08
上架時間 2017-06-08
評分 2.75/5 共 4 次評分
開發者 madsengellundt
付費類型 free
擴展官網 https://github.com/madslundt/RadarrSonarrPlex
說明頁面URL https://github.com/madslundt/RadarrSonarrPlex/issues
支援的語言 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
    }
}