Click dictionary

Double click on words to see their definition

O que é Click dictionary?

Click dictionary é uma extensão do Chrome desenvolvida por newdev, e sua principal característica é "Double click on words to see their definition".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Click dictionary

Baixe arquivos de extensão Click dictionary 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

                        This extension saves you time when reading text on a web page, in a foreign language, by allowing you to double click on the words you don't understand and providing you an intuitive translation popup.                    

Informações Básicas da Extensão

Nome Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
URL Oficial https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
Descrição Double click on words to see their definition
Tamanho do Arquivo 33.22 KB
Contagem de Instalações 1,570
Versão Atual 1.4.3
Última Atualização 2023-01-31
Data de Publicação 2017-10-31
Classificação 4.09/5 Total de 11 Avaliações
Desenvolvedor newdev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "newDev",
    "manifest_version": 3,
    "name": "Click dictionary",
    "short_name": "Click dict.",
    "description": "Double click on words to see their definition",
    "version": "1.4.3",
    "action": {
        "default_popup": "\/src\/modules\/action\/action.html"
    },
    "icons": {
        "48": "\/src\/icon\/icon48.png",
        "128": "\/src\/icon\/icon128.png"
    },
    "background": {
        "service_worker": "\/src\/modules\/dictionary-popup\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.css"
            ],
            "js": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.js"
            ]
        }
    ],
    "options_page": "\/src\/modules\/options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/utils\/languageSettings.js",
                "\/src\/utils\/htmlUtils.js",
                "\/src\/utils\/resultTable.js",
                "\/src\/utils\/disabledUrlService.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}