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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย madsengellundt และคุณลักษณะหลักของมันคือ "View and manage your movies and series in Radarr and Sonarr directly in the Plex app"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Radarr and Sonarr for Plex
ดาวน์โหลดไฟล์ส่วนขยาย Radarr and Sonarr for Plex ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Radarr and Sonarr for Plex |
ID | naofhcnmmeadbnonficeccmbfibchcmb |
URL อย่างเป็นทางการ | 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 } } |