Key Surfer
Navigate websites without using your mouse.
Key Surfer क्या है?
Key Surfer J Delaney द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Navigate websites without using your mouse."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Key Surfer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Click on links without your hands leaving your keyboard! To use: 1. Type shift+space 2. Type in the link you want to click 3. Use the up/down arrow keys to select which link you want to click 4. Press enter to click it! This project is open source as well! https://github.com/keysurfer/keysurfer
एक्सटेंशन की मूल जानकारी
नाम | |
ID | aabnolighedpdbhpipfohakmnbbepnkn |
आधिकारिक URL | https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn |
विवरण | Navigate websites without using your mouse. |
फ़ाइल का आकार | 50.39 KB |
स्थापना संख्या | 404 |
वर्तमान संस्करण | 0.3.10 |
अंतिम अपडेट | 2017-03-02 |
प्रकाशन तिथि | 2017-03-01 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | J Delaney |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/keysurfer/keysurfer |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Key Surfer", "version": "0.3.10", "manifest_version": 2, "description": "Navigate websites without using your mouse.", "options_ui": { "page": "src\/options\/index.html", "chrome_style": true }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "src\/bg\/background.js" ], "persistent": false }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "storage" ], "optional_permissions": [ "file:\/\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "js\/mousetrap.min.js", "js\/underscore.min.js", "js\/jquery.min.js", "src\/inject\/overlay.js", "src\/inject\/inject.js" ] } ] } |