Leap Motion Controller
This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Apa itu Leap Motion Controller?
Leap Motion Controller adalah ekstensi Chrome yang dikembangkan oleh Peter Schmalfeldt, dan fitur utamanya adalah "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Leap Motion Controller
Unduh file ekstensi Leap Motion Controller dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | odacmfmfjmfkojihlcjkngecflemhheo |
URL Resmi | https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo |
Deskripsi | This extension allows the use of Leap Motion controller to scroll page and browse forward/backward. |
Ukuran File | 103 KB |
Jumlah Instalasi | 447 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2013-05-25 |
Tanggal Publikasi | 2013-05-25 |
Penilaian | 2.32/5 Total 19 Penilaian |
Pengembang | Peter Schmalfeldt |
Tipe Pembayaran | free |
Situs Ekstensi | https://vimeo.com/66952815 |
URL Halaman Bantuan | https://github.com/manifestinteractive/leap-motion-chrome-extension |
Bahasa yang Didukung | 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" } |