Instant search keyboard shortcut

Restores some of the keyboard shortcuts available in instant search

Что такое Instant search keyboard shortcut?

Instant search keyboard shortcut - это расширение Chrome, разработанное Kiren, и его основная функция - "Restores some of the keyboard shortcuts available in instant search".

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

screenshot

Скачать файл CRX расширения Instant search keyboard shortcut

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

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

                        Missing using tab, esc, arrow-keys and having the familiar blue arrow?

Well, look no further! This is an attempt to restore of the keyboard shortcuts of google instant search.

If something's not working feel free to send a PR to the GitHub repo.                    

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

Название Instant search keyboard shortcut Instant search keyboard shortcut
ID dfaommhmceombgjkppajcdekakkinpmd
Официальный URL https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd
Описание Restores some of the keyboard shortcuts available in instant search
Размер файла 50.03 KB
Количество установок 33
Текущая Версия 0.1.1
Последнее Обновление 2017-08-05
Дата публикации 2017-08-05
Разработчик Kiren
Тип оплаты free
Официальный сайт расширения https://github.com/Kirens/InstantShortcuts
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant search keyboard shortcut",
    "description": "Restores some of the keyboard shortcuts available in instant search",
    "version": "0.1.1",
    "author": "Kirens",
    "icons": {
        "16": "res\/icon16.png",
        "48": "res\/icon48.png",
        "128": "res\/icon128.png",
        "256": "res\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.google.com\/search*",
                "*:\/\/www.google.se\/search*"
            ],
            "js": [
                "instant.js"
            ],
            "css": [
                "instant.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "essentials.css"
    ],
    "permissions": [
        "https:\/\/www.google.se\/*"
    ]
}