Leap Motion controller

Leap Motion Controller extension to control web browser with Leap Motion device.

Leap Motion controller란 무엇입니까?

Leap Motion controller은(는) Issam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Leap Motion Controller extension to control web browser with Leap Motion device."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        leap Motion Controller
This is a chrome extension that allows basic control for web pages within the Google Chrome browser via the LEAP MOTION controller. It detects gestures from the user to invoke actions scroll (vertically and horizontally), refresh the page, zoom in/out, navigate through the page's history and switch tabs.

The aim from this extension is to have basic controls, and good looking visual feedback to the user.

Note: This extension requires a Leap Motion controller to run (see https://www.leapmotion.com/).

Gestures feedback
With each gesture, a status icon will be shown to the user either on the bottom right edge of the page or at the middle (edges). The user can select either option from the options page.

The options page has a very customizable list of options that the user can configure. 

Gestures and actions
Now there's only 5 gestures ( I intend to add more later :) ) The gestures are illustrated in the pictures (a video will come soon): please see link https://github.com/Issam-b/leap-faith.                    

확장 프로그램 기본 정보

이름 Leap Motion controller Leap Motion controller
ID clmfjbffimjbmkbknmhflghngplomdka
공식 URL https://chrome.google.com/webstore/detail/leap-motion-controller/clmfjbffimjbmkbknmhflghngplomdka
설명 Leap Motion Controller extension to control web browser with Leap Motion device.
파일 크기 544 KB
설치 횟수 241
현재 버전 0.1.3
최근 업데이트 2018-08-07
출시 날짜 2018-08-07
개발자 Issam
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Issam-b/leap-faith
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Leap Motion controller",
    "version": "0.1.3",
    "author": "Assam Boudjelthia",
    "description": "Leap Motion Controller extension to control web browser with Leap Motion device.",
    "minimum_chrome_version": "19.0.1055.1",
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*",
                ""
            ],
            "js": [
                "js\/leap-0.6.4.min.js",
                "js\/jquery-1.9.0.min.js",
                "js\/leap-plugins-0.1.12.min.js",
                "js\/my_leap.js"
            ],
            "css": [
                "css\/content_page.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "images\/icons\/icon32.png",
        "default_title": "Leap Motion Controller",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/icons\/icon16.png",
        "48": "images\/icons\/icon48.png",
        "128": "images\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/*"
    ],
    "content_security_policy": "default-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        ""
    ]
}