MyoBrowser
A content script that lets you interact with web pages via the Myo armband, Myo sold separately
Was ist MyoBrowser?
MyoBrowser ist eine Chrome-Erweiterung, die von James Talbert entwickelt wurde, und ihr Hauptmerkmal ist "A content script that lets you interact with web pages via the Myo armband, Myo sold separately".
MyoBrowser-Erweiterungs-CRX-Datei herunterladen
Laden Sie MyoBrowser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | |
ID | iilkebcagnlgpfngbocafgofpilgklbl |
Offizielle URL | https://chrome.google.com/webstore/detail/myobrowser/iilkebcagnlgpfngbocafgofpilgklbl |
Beschreibung | A content script that lets you interact with web pages via the Myo armband, Myo sold separately |
Dateigröße | 12.46 KB |
Installationsanzahl | 38 |
Aktuelle Version | 2.0 |
Letztes Update | 2014-09-15 |
Veröffentlichungsdatum | 2014-09-15 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | James Talbert |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } } |