Key Surfer
Navigate websites without using your mouse.
Wat is Key Surfer?
Key Surfer is een Chrome-extensie ontwikkeld door J Delaney, en de belangrijkste functie is "Navigate websites without using your mouse.".
Extensie Screenshots
Download het CRX-bestand van de extensie Key Surfer
Download Key Surfer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | aabnolighedpdbhpipfohakmnbbepnkn |
| Officiële URL | https://chromewebstore.google.com/detail/key-surfer/aabnolighedpdbhpipfohakmnbbepnkn |
| Beschrijving | Navigate websites without using your mouse. |
| Bestandsgrootte | 50.39 KB |
| Aantal Installaties | 404 |
| Huidige Versie | 0.3.10 |
| Laatst Bijgewerkt | 2017-03-02 |
| Publicatiedatum | 2017-03-01 |
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
| Ontwikkelaar | J Delaney |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/keysurfer/keysurfer |
| Ondersteunde Talen | 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"
]
}
]
} | |