Leap Motion Controller

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

¿Qué es Leap Motion Controller?

Leap Motion Controller es una extensión de Chrome desarrollada por Peter Schmalfeldt, y su función principal es "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Leap Motion Controller

Descarga archivos de extensión Leap Motion Controller en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Leap Motion Controller Leap Motion Controller
ID odacmfmfjmfkojihlcjkngecflemhheo
URL Oficial https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo
Descripción This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Tamaño del Archivo 103 KB
Cantidad de Instalaciones 447
Versión Actual 1.0.0
Última Actualización 2013-05-25
Fecha de Publicación 2013-05-25
Calificación 2.32/5 Total de 19 Calificaciones
Desarrollador Peter Schmalfeldt
Tipo de Pago free
Sitio Web de la Extensión https://vimeo.com/66952815
URL de la Página de Ayuda https://github.com/manifestinteractive/leap-motion-chrome-extension
Idiomas Soportados 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"
}