Leap Motion Controller

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

Leap Motion Controller là gì?

Leap Motion Controller là một tiện ích mở rộng Chrome được phát triển bởi Peter Schmalfeldt, và tính năng chính của nó là "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

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

Tải xuống các tệp mở rộng Leap Motion Controller 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

                        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                    

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

Tên Leap Motion Controller Leap Motion Controller
ID odacmfmfjmfkojihlcjkngecflemhheo
URL Chính Thức https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo
Mô tả This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Kích Thước Tệp 103 KB
Số Lần Cài Đặt 447
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2013-05-25
Ngày Phát Hành 2013-05-25
Đánh Giá 2.32/5 Tổng số 19 Đánh Giá
Nhà Phát Triển Peter Schmalfeldt
Loại Thanh Toán free
Trang Web Mở Rộng https://vimeo.com/66952815
URL Trang Trợ Giúp https://github.com/manifestinteractive/leap-motion-chrome-extension
Ngôn Ngữ Được Hỗ Trợ 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"
}