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" } |