Leap Motion Controller
This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Cos'è Leap Motion Controller?
Leap Motion Controller è un'estensione di Chrome sviluppata da Peter Schmalfeldt, e la sua funzione principale è "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Leap Motion Controller
Scarica i file di estensione Leap Motion Controller in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | odacmfmfjmfkojihlcjkngecflemhheo |
| URL Ufficiale | https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo |
| Descrizione | This extension allows the use of Leap Motion controller to scroll page and browse forward/backward. |
| Dimensione del File | 103 KB |
| Conteggio Installazioni | 447 |
| Versione Corrente | 1.0.0 |
| Ultimo Aggiornamento | 2013-05-25 |
| Data di Pubblicazione | 2013-05-25 |
| Valutazione | 2.32/5 Totale 19 Valutazioni |
| Sviluppatore | Peter Schmalfeldt |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://vimeo.com/66952815 |
| URL della Pagina di Aiuto | https://github.com/manifestinteractive/leap-motion-chrome-extension |
| Lingue Supportate | 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"
} | |