English-Chinese dictionary (select->control)

This extension translates the selected English word into Chinese, or vice versa.

¿Qué es English-Chinese dictionary (select->control)?

English-Chinese dictionary (select->control) es una extensión de Chrome desarrollada por Fujun Du, y su función principal es "This extension translates the selected English word into Chinese, or vice versa.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión English-Chinese dictionary (select->control)

Descarga archivos de extensión English-Chinese dictionary (select->control) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        This is an English-Chinese translator based on dict.cn (海词), Youdao dictionary (有道), Google Translate, and zdic (汉典).

It has two modes of usage:
1. Select text, then press and release the "control" key.
2. Click on the extension icon, enter text, choose the dictionary service you want to use (default "dict.cn"), and click on "Submit".                    

Información Básica de la Extensión

Nombre English-Chinese dictionary (select->control) English-Chinese dictionary (select->control)
ID mhfedeapmfofjbbmgiangfhnadgloemk
URL Oficial https://chromewebstore.google.com/detail/english-chinese-dictionar/mhfedeapmfofjbbmgiangfhnadgloemk
Descripción This extension translates the selected English word into Chinese, or vice versa.
Tamaño del Archivo 39.59 KB
Cantidad de Instalaciones 1,312
Versión Actual 0.4
Última Actualización 2015-10-10
Fecha de Publicación 2015-10-09
Calificación 4.25/5 Total de 4 Calificaciones
Desarrollador Fujun Du
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "English-Chinese dictionary (select->control)",
    "short_name": "dictionary",
    "description": "This extension translates the selected English word into Chinese, or vice versa.",
    "version": "0.4",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "handle.css"
            ],
            "js": [
                "jquery.min.js",
                "handle.js",
                "popup.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "page": "bg.html",
        "persistent": true
    }
}