Chromyo

Control your Chrome browser using the Thalmic Myo!

Chromyo란 무엇입니까?

Chromyo은(는) georgekeee에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your Chrome browser using the Thalmic Myo!"입니다.

확장 프로그램 스크린샷

Chromyo 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Welcome to Chromyo! 

This extension works with the Thalmic Myo, allowing you to take control of your browser.

Features:
 - Multiple modes to control various layers of the browser
 - Switching through tabs or windows
 - Creating and closing tabs or windows
 - Auto-locking to prevent accidental gestures

Modes:
 - Locked: Gestures are disabled
 - Tabs: Control tabs in the current window
 - Window: Control all windows in Chrome

Myo Gestures:
 - Wave-In: Switch tabs/window leftwards
 - Wave-Out: Switch tabs/windows rightwards
 - Pinky-To-Thumb: Switch between modes
 - Fist: Close current tab/window
 - Finger Spread: Open new tab/window                    

확장 프로그램 기본 정보

이름 Chromyo Chromyo
ID alefbljjbodoogjhejgemcmdhhocdfmd
공식 URL https://chrome.google.com/webstore/detail/chromyo/alefbljjbodoogjhejgemcmdhhocdfmd
설명 Control your Chrome browser using the Thalmic Myo!
파일 크기 34.26 KB
설치 횟수 44
현재 버전 0.7.3
최근 업데이트 2014-09-21
출시 날짜 2014-09-21
평점 2.17/5 총 6 개의 평점
개발자 georgekeee
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chromyo",
    "description": "Control your Chrome browser using the Thalmic Myo!",
    "version": "0.7.3",
    "permissions": [
        "",
        "tabs",
        "topSites",
        "storage"
    ],
    "browser_action": {
        "default_icon": "img\/locked.png"
    },
    "options_page": "config.html",
    "icons": {
        "48": "img\/logo.png"
    },
    "background": {
        "scripts": [
            "js\/browserModes.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/foreground.js"
            ]
        }
    ]
}