Super Translator

Traduce singole parole presenti nelle pagine web. E' sufficiente eseguire doppio click sulla parola da tradurre.

Что такое Super Translator?

Super Translator - это расширение Chrome, разработанное michelemilidoni, и его основная функция - "Traduce singole parole presenti nelle pagine web. E' sufficiente eseguire doppio click sulla parola da tradurre.".

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

screenshot
screenshot

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

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

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

                        Attualmente è supportata la traduzione da inglese ad italiana.

This extension translates words with double click on texts of web pages. It uses Glosbe (glosbe.com) API to translate words.

Actually, only english to italian translation is supported.                    

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

Название Super Translator Super Translator
ID fomolpbbegfcbpglnbdacjedhlglnobj
Официальный URL https://chrome.google.com/webstore/detail/super-translator/fomolpbbegfcbpglnbdacjedhlglnobj
Описание Traduce singole parole presenti nelle pagine web. E' sufficiente eseguire doppio click sulla parola da tradurre.
Размер файла 64.49 KB
Количество установок 69
Текущая Версия 0.2.1
Последнее Обновление 2014-05-23
Дата публикации 2014-05-23
Рейтинг 2.00/5 Всего 2 оценок
Разработчик michelemilidoni
Тип оплаты free
Официальный сайт расширения https://github.com/mmilidoni/supertranslator-chrome-extension
URL страницы помощи https://github.com/mmilidoni/supertranslator-chrome-extension/issues
Поддерживаемые языки it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Super Translator",
    "version": "0.2.1",
    "manifest_version": 2,
    "description": "Traduce singole parole presenti nelle pagine web. E' sufficiente eseguire doppio click sulla parola da tradurre.",
    "icons": {
        "16": "dictionary16.png",
        "48": "dictionary48.png",
        "128": "dictionary.png"
    },
    "permissions": [
        "http:\/\/glosbe.com\/gapi\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "actions.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ]
}