Plexius
Enhancements to the Plex web interface
Plexiusคืออะไร?
Plexius เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Flaviu C และคุณลักษณะหลักของมันคือ "Enhancements to the Plex web interface"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Plexius
ดาวน์โหลดไฟล์ส่วนขยาย Plexius ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A small extension which provides IMDB ratings into the Plex movie library for the new 3.0 Plex Web. changelog: https://github.com/campanflaviu/plexius/releases Project available at https://github.com/campanflaviu/plexius
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cghenlijcboahfbcgiccpnmagdhihiho |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/plexius/cghenlijcboahfbcgiccpnmagdhihiho |
คำอธิบาย | Enhancements to the Plex web interface |
ขนาดไฟล์ | 166 KB |
จำนวนการติดตั้ง | 912 |
เวอร์ชันปัจจุบัน | 1.7.1 |
อัปเดตครั้งล่าสุด | 2017-09-21 |
วันที่เผยแพร่ | 2017-09-21 |
คะแนน | 3.56/5 รวมทั้งหมด 25 คะแนน |
ผู้พัฒนา | Flaviu C |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Plexius", "description": "Enhancements to the Plex web interface", "version": "1.7.1", "browser_action": { "default_icon": "assets\/icon.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "css": [ "styles.css", "styles\/stats.css" ], "js": [ "js\/libraries\/jquery-3.1.1.min.js", "js\/promise.min.js", "js\/arrive.min.js", "js\/constants.js", "js\/helpers.js", "js\/apis\/plex.js", "js\/apis\/omdb.js", "js\/apis\/trakt.js", "js\/plugins\/missingEpisodes.js", "js\/plugins\/stats.js", "js\/content.js" ], "matches": [ "*:\/\/*\/web\/*", "*:\/\/*\/desktop*" ], "run_at": "document_end" } ], "permissions": [ "storage", "activeTab" ], "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "web_accessible_resources": [ "assets\/*", "options.html", "stats.html" ] } |