Instant Dictionary

View definition in both English and Chinese as you browse the web.

O que é Instant Dictionary?

Instant Dictionary é uma extensão do Chrome desenvolvida por Peter Pi, e sua principal característica é "View definition in both English and Chinese as you browse the web.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Instant Dictionary

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

                        IMPORTANT:
 - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome.

Instant Dictionary helps to make the translation become more convenient.

Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.                    

Informações Básicas da Extensão

Nome Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
URL Oficial https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
Descrição View definition in both English and Chinese as you browse the web.
Tamanho do Arquivo 696 KB
Contagem de Instalações 121
Versão Atual 1.0.6
Última Atualização 2022-01-08
Data de Publicação 2020-04-18
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Peter Pi
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Dictionary",
    "version": "1.0.6",
    "description": "View definition in both English and Chinese as you browse the web.",
    "author": "Peter Pi",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "Styles.css"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}