MyoBrowser

A content script that lets you interact with web pages via the Myo armband, Myo sold separately

MyoBrowser là gì?

MyoBrowser là một tiện ích mở rộng Chrome được phát triển bởi James Talbert, và tính năng chính của nó là "A content script that lets you interact with web pages via the Myo armband, Myo sold separately".

Tải xuống tệp CRX của tiện ích mở rộng MyoBrowser

Tải xuống các tệp mở rộng MyoBrowser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên MyoBrowser MyoBrowser
ID iilkebcagnlgpfngbocafgofpilgklbl
URL Chính Thức https://chrome.google.com/webstore/detail/myobrowser/iilkebcagnlgpfngbocafgofpilgklbl
Mô tả A content script that lets you interact with web pages via the Myo armband, Myo sold separately
Kích Thước Tệp 12.46 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2014-09-15
Ngày Phát Hành 2014-09-15
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển James Talbert
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}