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.                    

擴展基本資訊

名稱 MyoBrowser MyoBrowser
ID iilkebcagnlgpfngbocafgofpilgklbl
官方網址 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"
        ]
    }
}