Key Surfer
Navigate websites without using your mouse.
Что такое Key Surfer?
Key Surfer - это расширение Chrome, разработанное J Delaney, и его основная функция - "Navigate websites without using your mouse.".
Снимки экрана расширения
Скачать файл CRX расширения Key Surfer
Скачайте файлы расширений Key Surfer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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"
]
}
]
} | |