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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
    }
}