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 |
| 官方網址 | 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"
} | |