Key Surfer
Navigate websites without using your mouse.
Vad är Key Surfer?
Key Surfer är en Chrome-tillägg utvecklad av J Delaney, och dess huvudfunktion är "Navigate websites without using your mouse.".
Tilläggsskärmbilder
Ladda ner Key Surfer-förlängningens CRX-fil
Ladda ner Key Surfer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | |
ID | aabnolighedpdbhpipfohakmnbbepnkn |
Officiell webbadress | https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn |
Beskrivning | Navigate websites without using your mouse. |
Filstorlek | 50.39 KB |
Antal Installationer | 404 |
Aktuell Version | 0.3.10 |
Senast Uppdaterad | 2017-03-02 |
Publiceringsdatum | 2017-03-01 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | J Delaney |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/keysurfer/keysurfer |
Stödda Språk | 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" ] } ] } |