Netflix Controller Support
Allows one to control a netflix watch page with an xbox (only tested) controller.
Netflix Controller Supportคืออะไร?
Netflix Controller Support เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://aubronwood.com และคุณลักษณะหลักของมันคือ "Allows one to control a netflix watch page with an xbox (only tested) controller."
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Controller Support
ดาวน์โหลดไฟล์ส่วนขยาย Netflix Controller Support ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension is intended to be used with NetfliXBMC - An XBMC plugin that opens chrome in kiosk mode on netflix watch pages as a method of playing netflix via XBMC. This extension allows you to use an xbox 360 controller with that page, including support for seeking, volume up/down, and closing chrome. Please report any bugs to https://github.com/Aubron/Netflix-Controller
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | flakmgbknagcohphpoogebajjbmlmngh |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/netflix-controller-suppor/flakmgbknagcohphpoogebajjbmlmngh |
คำอธิบาย | Allows one to control a netflix watch page with an xbox (only tested) controller. |
ขนาดไฟล์ | 46.4 KB |
จำนวนการติดตั้ง | 157 |
เวอร์ชันปัจจุบัน | 0.1 |
อัปเดตครั้งล่าสุด | 2014-10-13 |
วันที่เผยแพร่ | 2014-10-13 |
คะแนน | 2.80/5 รวมทั้งหมด 10 คะแนน |
ผู้พัฒนา | http://aubronwood.com |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [], "js": [ "jquery.js", "script.js" ], "matches": [ "http:\/\/www.netflix.com\/WiPlayer*" ], "run_at": "document_idle" } ], "icons": { "48": "netflix48.png", "128": "netflix128.png" }, "description": "Allows one to control a netflix watch page with an xbox (only tested) controller.", "name": "Netflix Controller Support", "version": "0.1", "permissions": [ "tabs" ] } |