Sonarr for Plex

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

Sonarr for Plexคืออะไร?

Sonarr for Plex เป็นส่วนขยายของ Chrome ที่พัฒนาโดย danbovey และคุณลักษณะหลักของมันคือ "View and manage your shows in Sonarr directly in the Plex app"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sonarr for Plex

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}