Instant search keyboard shortcut

Restores some of the keyboard shortcuts available in instant search

Cos'è Instant search keyboard shortcut?

Instant search keyboard shortcut è un'estensione di Chrome sviluppata da Kiren, e la sua funzione principale è "Restores some of the keyboard shortcuts available in instant search".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Instant search keyboard shortcut

Scarica i file di estensione Instant search keyboard shortcut in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Instant search keyboard shortcut Instant search keyboard shortcut
ID dfaommhmceombgjkppajcdekakkinpmd
URL Ufficiale https://chromewebstore.google.com/detail/instant-search-keyboard-s/dfaommhmceombgjkppajcdekakkinpmd
Descrizione Restores some of the keyboard shortcuts available in instant search
Dimensione del File 50.03 KB
Conteggio Installazioni 33
Versione Corrente 0.1.1
Ultimo Aggiornamento 2017-08-05
Data di Pubblicazione 2017-08-05
Sviluppatore Kiren
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Kirens/InstantShortcuts
Lingue Supportate 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\/*"
    ]
}