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" ] } } |