Select Search

Select -> Search / Translate / Go to link

O que é Select Search?

Select Search é uma extensão do Chrome desenvolvida por xuqingfeng, e sua principal característica é "Select -> Search / Translate / Go to link".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Select Search

Baixe arquivos de extensão Select Search 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

                        In macOS / Windows:

⌘/ + G - search selected text with different search engine( Google, Bing, Sogou ... )

⌘/ + E - translate selected text

⌘/ + B - jump to selected link

Note: shortcuts are customizable in extension's Options page                    

Informações Básicas da Extensão

Nome Select Search Select Search
ID hlnpaciomjjnpmbjedfmlnkhogngmleh
URL Oficial https://chromewebstore.google.com/detail/select-search/hlnpaciomjjnpmbjedfmlnkhogngmleh
Descrição Select -> Search / Translate / Go to link
Tamanho do Arquivo 2.21 MB
Contagem de Instalações 13
Versão Atual 3.2.0
Última Atualização 2023-11-01
Data de Publicação 2016-06-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor xuqingfeng
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/xuqingfeng/Select-Search
Idiomas Suportados en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Select Search",
    "version": "3.2.0",
    "description": "Select -> Search \/ Translate \/ Go to link",
    "icons": {
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_icon": "icons\/icon48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_page": "options.html",
    "default_locale": "en",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ]
}