Instant search keyboard shortcut

Restores some of the keyboard shortcuts available in instant search

Co to jest Instant search keyboard shortcut?

Instant search keyboard shortcut to rozszerzenie Chrome opracowane przez Kiren, a jego główną funkcją jest „Restores some of the keyboard shortcuts available in instant search”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Instant search keyboard shortcut

Pobierz pliki rozszerzeń Instant search keyboard shortcut w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Instant search keyboard shortcut Instant search keyboard shortcut
ID dfaommhmceombgjkppajcdekakkinpmd
Oficjalny URL https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd
Opis Restores some of the keyboard shortcuts available in instant search
Rozmiar pliku 50.03 KB
Liczba instalacji 33
Aktualna Wersja 0.1.1
Ostatnia Aktualizacja 2017-08-05
Data Publikacji 2017-08-05
Deweloper Kiren
Typ Płatności free
Strona Rozszerzenia https://github.com/Kirens/InstantShortcuts
Obsługiwane Języki 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\/*"
    ]
}