English-Chinese dictionary (select->control)

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

Что такое English-Chinese dictionary (select->control)?

English-Chinese dictionary (select->control) - это расширение Chrome, разработанное Fujun Du, и его основная функция - "This extension translates the selected English word into Chinese, or vice versa.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения English-Chinese dictionary (select->control)

Скачайте файлы расширений English-Chinese dictionary (select->control) в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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".                    

Основная информация о расширении

Название English-Chinese dictionary (select->control) English-Chinese dictionary (select->control)
ID mhfedeapmfofjbbmgiangfhnadgloemk
Официальный URL https://chromewebstore.google.com/detail/english-chinese-dictionar/mhfedeapmfofjbbmgiangfhnadgloemk
Описание This extension translates the selected English word into Chinese, or vice versa.
Размер файла 39.59 KB
Количество установок 1,312
Текущая Версия 0.4
Последнее Обновление 2015-10-10
Дата публикации 2015-10-09
Рейтинг 4.25/5 Всего 4 оценок
Разработчик Fujun Du
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
    }
}