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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } } |