Search Quick

Google SearchQuick automatically opens the search results of a Google Search in new tabs

O que é Search Quick?

Search Quick é uma extensão do Chrome desenvolvida por Vignesh, e sua principal característica é "Google SearchQuick automatically opens the search results of a Google Search in new tabs".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Search Quick

Baixe arquivos de extensão Search Quick no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Google SearchQuick is a browser add-on that opens the predetermined number of search results that are returned on a Google search in separate tabs at the click of a single button.  This extension works on all Google domains.

The number of results that need to be opened can be defined in the Options. By default three results are opened. This can be set to a maximum of 8.


Points to remember:
1)Please wait for the Google results page to be completely loaded before clicking on the extension icon.
2)Doesn’t work on secured Google connections (https:\\)


Please reach me on [email protected] with your feedback.                    

Informações Básicas da Extensão

Nome Search Quick Search Quick
ID chnnajbjipfainfepeoiblbpmajdnkpn
URL Oficial https://chromewebstore.google.com/detail/search-quick/chnnajbjipfainfepeoiblbpmajdnkpn
Descrição Google SearchQuick automatically opens the search results of a Google Search in new tabs
Tamanho do Arquivo 123 KB
Contagem de Instalações 225
Versão Atual 0.3
Última Atualização 2012-10-17
Data de Publicação 2012-10-17
Classificação 4.56/5 Total de 9 Avaliações
Desenvolvedor Vignesh
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Search Quick",
    "version": "0.3",
    "description": "Google SearchQuick automatically opens the search results of a Google Search in new tabs",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "Google.png",
        "48": "Google.png",
        "128": "Google.png"
    },
    "browser_action": {
        "default_icon": "Google.png"
    },
    "manifest_version": 2,
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "jquery-1.6.1.min.js",
                "urlcatch.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}