MyoBrowser
A content script that lets you interact with web pages via the Myo armband, Myo sold separately
MyoBrowserとは何ですか?
MyoBrowserはJames Talbertによって開発されたChromeの拡張機能で、その主な機能は「A content script that lets you interact with web pages via the Myo armband, Myo sold separately」です。
MyoBrowser拡張機能のCRXファイルをダウンロード
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" ] } } |