Leap Motion Controller
This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Vad är Leap Motion Controller?
Leap Motion Controller är en Chrome-tillägg utvecklad av Peter Schmalfeldt, och dess huvudfunktion är "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".
Tilläggsskärmbilder
Ladda ner Leap Motion Controller-förlängningens CRX-fil
Ladda ner Leap Motion Controller-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | odacmfmfjmfkojihlcjkngecflemhheo |
Officiell webbadress | https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo |
Beskrivning | This extension allows the use of Leap Motion controller to scroll page and browse forward/backward. |
Filstorlek | 103 KB |
Antal Installationer | 447 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2013-05-25 |
Publiceringsdatum | 2013-05-25 |
Betyg | 2.32/5 Totalt 19 Betyg |
Utvecklare | Peter Schmalfeldt |
Betalningssätt | free |
Tilläggswebbplats | https://vimeo.com/66952815 |
Hjälpsida URL | https://github.com/manifestinteractive/leap-motion-chrome-extension |
Stödda Språk | 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" } |