Leap Motion Controller

This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.

Leap Motion Controller란 무엇입니까?

Leap Motion Controller은(는) Peter Schmalfeldt에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward."입니다.

확장 프로그램 스크린샷

screenshot

Leap Motion Controller 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Leap Motion Chrome Extension.  Use your Leap Motion Device to Control Your Browser.

Instructions: 

* Use two fingers to Scroll Page
* Use Open Hand to Swipe Left & Right to go Forward & Back through your Browser History

Configuration Options:

* Show Fingers
* Finger Colors
* Page Scrolling
* History Swipe
* Page Zoom
* Page Rotation                    

확장 프로그램 기본 정보

이름 Leap Motion Controller Leap Motion Controller
ID odacmfmfjmfkojihlcjkngecflemhheo
공식 URL https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo
설명 This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
파일 크기 103 KB
설치 횟수 447
현재 버전 1.0.0
최근 업데이트 2013-05-25
출시 날짜 2013-05-25
평점 2.32/5 총 19 개의 평점
개발자 Peter Schmalfeldt
결제 유형 free
확장 프로그램 웹 사이트 https://vimeo.com/66952815
도움말 페이지 URL https://github.com/manifestinteractive/leap-motion-chrome-extension
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leap Motion Controller",
    "description": "This extension allows the use of Leap Motion controller to scroll page and browse forward\/backward.",
    "version": "1.0.0",
    "homepage_url": "https:\/\/github.com\/manifestinteractive\/leap-motion-chrome-extension",
    "minimum_chrome_version": "19.0.1055.1",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/leap.js",
                "js\/jquery-1.9.0.min.js",
                "js\/leapmotion.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon_19.png",
            "38": "img\/icon_38.png"
        },
        "default_title": "Leap Motion Controller",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}