KeyboardMode

This extension allows you to open links with your Keyboard.

Что такое KeyboardMode?

KeyboardMode - это расширение Chrome, разработанное https://hanneshofer.github.io/KeyboardMode, и его основная функция - "This extension allows you to open links with your Keyboard.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения KeyboardMode

Скачайте файлы расширений KeyboardMode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension allows you to control chrome with your keyboard.
With the alreay knows hotkeys it is already possible to control most parts of chrome (ex. Enter new URL, go back, go forward)
after pressing a certain, adjustable, hotkey this extension shows links hints (see screenshot)
when the shown characters in the link hints are pressed the relevant link will be opend.
with "meta" keys it is possible to open certain links in new tab, new window or in new incognito window.                    

Основная информация о расширении

Название KeyboardMode KeyboardMode
ID gceomdpidnmgddihieakclncpopaiplc
Официальный URL https://chromewebstore.google.com/detail/keyboardmode/gceomdpidnmgddihieakclncpopaiplc
Описание This extension allows you to open links with your Keyboard.
Размер файла 44.36 KB
Количество установок 11
Текущая Версия 0.1
Последнее Обновление 2014-08-19
Дата публикации 2014-08-19
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://hanneshofer.github.io/KeyboardMode
Тип оплаты free
Поддерживаемые языки de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "description": "This extension allows you to open links with your Keyboard.",
    "icons": {
        "128": "icon.png"
    },
    "version": "0.1",
    "options_page": "options.html",
    "permissions": [
        "",
        "tabs",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "lib\/background.js"
        ]
    },
    "commands": {
        "activate_link_hints": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "Command+M"
            },
            "description": "Link Hints anzeigen"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "lib\/keyboard_utils.js",
                "lib\/dom_utils.js",
                "lib\/option_utils.js",
                "link_hints.js",
                "command.js"
            ],
            "css": [
                "keyboardmode.css"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}