MyoBrowser
A content script that lets you interact with web pages via the Myo armband, Myo sold separately
Co je MyoBrowser?
MyoBrowser je rozšíření Chrome vyvinuté James Talbert, a jeho hlavní funkcí je „A content script that lets you interact with web pages via the Myo armband, Myo sold separately“.
Stáhnout soubor CRX rozšíření MyoBrowser
Stáhněte si soubory rozšíření MyoBrowser ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | iilkebcagnlgpfngbocafgofpilgklbl |
Oficiální URL | https://chrome.google.com/webstore/detail/myobrowser/iilkebcagnlgpfngbocafgofpilgklbl |
Popis | A content script that lets you interact with web pages via the Myo armband, Myo sold separately |
Velikost souboru | 12.46 KB |
Počet instalací | 38 |
Aktuální Verze | 2.0 |
Poslední Aktualizace | 2014-09-15 |
Datum Vydání | 2014-09-15 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | James Talbert |
Typ Platby | free |
Podporované Jazyky | 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" ] } } |