MyoBrowser
A content script that lets you interact with web pages via the Myo armband, Myo sold separately
MyoBrowserคืออะไร?
MyoBrowser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย James Talbert และคุณลักษณะหลักของมันคือ "A content script that lets you interact with web pages via the Myo armband, Myo sold separately"
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MyoBrowser
ดาวน์โหลดไฟล์ส่วนขยาย MyoBrowser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Currently in beta. This application will allow you to control your browser with the Myo armband. Before use, perform the setup gesture to enable page navigation and fast scrolling. Scrolling takes some practice, I hope to be able to upload a video at some point. Instructions: (It will take some practice) Scroll down: Lower your arm, accelerating slowly, the quickly accelerate up and float back up. Scroll up: Same as down, just backwards. Make a fist to start scrolling faster, spread your fingers to scroll slower. Zoom (toggle): Punch the air (not your screen). Refresh: Flip your arm over quickly. Forward: Flick your hand inward (toward chest); Back: Flick your hand outward.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | iilkebcagnlgpfngbocafgofpilgklbl |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/myobrowser/iilkebcagnlgpfngbocafgofpilgklbl |
คำอธิบาย | A content script that lets you interact with web pages via the Myo armband, Myo sold separately |
ขนาดไฟล์ | 12.46 KB |
จำนวนการติดตั้ง | 38 |
เวอร์ชันปัจจุบัน | 2.0 |
อัปเดตครั้งล่าสุด | 2014-09-15 |
วันที่เผยแพร่ | 2014-09-15 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | James Talbert |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MyoBrowser", "description": "A content script that lets you interact with web pages via the Myo armband, Myo sold separately", "version": "2.0", "permissions": [ "*:\/\/*\/*", "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "myo.js", "myo.experimental.js", "content_script.js", "myoScroll.js" ] } ], "web_accessible_resources": [ "myoScroll.js" ], "background": { "scripts": [ "background.js" ] } } |