Google search tab fixer

Allows users to cycle through google search results by pressing the tab key.

Cos'è Google search tab fixer?

Google search tab fixer è un'estensione di Chrome sviluppata da Sam, e la sua funzione principale è "Allows users to cycle through google search results by pressing the tab key.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google search tab fixer

Scarica i file di estensione Google search tab fixer 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

                        This small extension brings familiar tab functionality back to the google search results page. Press tab once to go to the top result, or multiple times to cycle through the search results. Press enter on any result to view that result.                    

Informazioni di Base sull'Estensione

Nome Google search tab fixer Google search tab fixer
ID hggbelpbiemgfkdhofjeajpgnoieogmg
URL Ufficiale https://chromewebstore.google.com/detail/google-search-tab-fixer/hggbelpbiemgfkdhofjeajpgnoieogmg
Descrizione Allows users to cycle through google search results by pressing the tab key.
Dimensione del File 20.04 KB
Conteggio Installazioni 17
Versione Corrente 0.0.4
Ultimo Aggiornamento 2016-07-15
Data di Pubblicazione 2016-07-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Sam
Tipo di Pagamento free
Sito Web dell'Estensione http://www.101drum.com
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google search tab fixer",
    "version": "0.0.4",
    "manifest_version": 2,
    "description": "Allows users to cycle through google search results by pressing the tab key.",
    "homepage_url": "http:\/\/101drum.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "page action demo",
        "default_popup": "src\/page_action\/page_action.html"
    },
    "permissions": [
        "*:\/\/*\/search*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/search*"
            ],
            "run_at": "document_start",
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}