Zaqwes Translate

The simplest intext translator (Google Translate). Just select peace of text and open context menu.

Что такое Zaqwes Translate?

Zaqwes Translate - это расширение Chrome, разработанное vda, и его основная функция - "The simplest intext translator (Google Translate). Just select peace of text and open context menu.".

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

screenshot
screenshot

Скачать файл CRX расширения Zaqwes Translate

Скачайте файлы расширений Zaqwes Translate в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

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

                        The simplest intext translator. Just select peace of text and open context menu.

You can customize translated text color, your native and learning language in a extension config page.

Changes

v 0.3.3:
 - added "remove translation" button                    

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

Название Zaqwes Translate Zaqwes Translate
ID egebhoednokcgohihigbkojpfgofdhak
Официальный URL https://chrome.google.com/webstore/detail/zaqwes-translate/egebhoednokcgohihigbkojpfgofdhak
Описание The simplest intext translator (Google Translate). Just select peace of text and open context menu.
Размер файла 39.56 KB
Количество установок 14
Текущая Версия 0.3.3
Последнее Обновление 2014-08-15
Дата публикации 2014-08-15
Рейтинг 5.00/5 Всего 3 оценок
Разработчик vda
Тип оплаты free
Поддерживаемые языки zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zaqwes Translate",
    "description": "The simplest intext translator (Google Translate). Just select peace of text and open context menu.",
    "version": "0.3.3",
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon_16.png",
        "19": "icon_19.png",
        "38": "icon_38.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "http:\/\/*\/*.jpg",
                "http:\/\/*\/*.png"
            ],
            "js": [
                "zaqwes-translate-pageScript.js"
            ]
        }
    ],
    "manifest_version": 2
}