Leap Motion Controller
This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.
Leap Motion Controllerとは何ですか?
Leap Motion ControllerはPeter Schmalfeldtによって開発されたChromeの拡張機能で、その主な機能は「This extension allows the use of Leap Motion controller to scroll page and browse forward/backward.」です。
拡張機能のスクリーンショット
Leap Motion Controller拡張機能のCRXファイルをダウンロード
Leap Motion Controller拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | |
ID | odacmfmfjmfkojihlcjkngecflemhheo |
公式URL | https://chrome.google.com/webstore/detail/leap-motion-controller/odacmfmfjmfkojihlcjkngecflemhheo |
説明 | This extension allows the use of Leap Motion controller to scroll page and browse forward/backward. |
ファイルサイズ | 103 KB |
インストール数 | 447 |
現在のバージョン | 1.0.0 |
最終更新日 | 2013-05-25 |
公開日 | 2013-05-25 |
評価 | 2.32/5 合計 19 レビュー |
開発者 | Peter Schmalfeldt |
支払い方法 | free |
拡張機能のウェブサイト | https://vimeo.com/66952815 |
ヘルプページのURL | https://github.com/manifestinteractive/leap-motion-chrome-extension |
対応言語 | 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" } |