Leap Motion Controller

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

Qu'est-ce que Leap Motion Controller ?

Leap Motion Controller est une extension Chrome développée par Peter Schmalfeldt, et sa fonction principale est "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Leap Motion Controller

Téléchargez les fichiers d'extension Leap Motion Controller au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Leap Motion Controller Leap Motion Controller
ID odacmfmfjmfkojihlcjkngecflemhheo
URL Officiel https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo
Description This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Taille du Fichier 103 KB
Nombre d'Installations 447
Version Actuelle 1.0.0
Dernière Mise à Jour 2013-05-25
Date de Publication 2013-05-25
Évaluation 2.32/5 Total 19 Évaluations
Développeur Peter Schmalfeldt
Type de Paiement free
Site Web de l'Extension https://vimeo.com/66952815
URL de la Page d'Aide https://github.com/manifestinteractive/leap-motion-chrome-extension
Langues Prises en Charge 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"
}