Selection Menu

Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)

O que é Selection Menu?

Selection Menu é uma extensão do Chrome desenvolvida por mad1ost, e sua principal característica é "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Selection Menu

Baixe arquivos de extensão Selection Menu 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

                        Select the text and click on one of the buttons in the pop-up menu (copy or search in Google (or other search engines)). See extension preferences to choose your own search engine.                    

Informações Básicas da Extensão

Nome Selection Menu Selection Menu
ID oplmnnimmmpiofnckcojgkonjfajgfhl
URL Oficial https://chromewebstore.google.com/detail/selection-menu/oplmnnimmmpiofnckcojgkonjfajgfhl
Descrição Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)
Tamanho do Arquivo 14.32 KB
Contagem de Instalações 51
Versão Atual 3.1.0
Última Atualização 2024-02-01
Data de Publicação 2020-06-27
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor mad1ost
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mad1ost/selection-menu
URL da Página de Ajuda https://github.com/mad1ost/selection-menu/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Selection Menu",
    "version": "3.1.0",
    "description": "Pop-up menu after selection with copying and searching for selected text in Google (or other search engines)",
    "homepage_url": "https:\/\/github.com\/mad1ost\/selection-menu",
    "icons": {
        "32": "icons\/icon-32.png",
        "64": "icons\/icon-64.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "selection-menu.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": false
        },
        {
            "js": [
                "selection-menu-sub.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}