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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows the use of Leap Motion controller to scroll page and browse forward/backward."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Leap Motion Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } |