Wiktionary Translator

Quickly look up words in wiktionary as you read

Что такое Wiktionary Translator?

Wiktionary Translator - это расширение Chrome, разработанное axolotl, и его основная функция - "Quickly look up words in wiktionary as you read".

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

screenshot

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

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

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

                        Wiktionary translator is a simple and quick way to translate words on a page. 

Just select a word on your page and press Shift+Ctrl+F to open the translator popup to see the wiktionary results! You can also type words to search directly in the popup.

You can select a different language for wiktionary translator in the Options page.                    

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

Название Wiktionary Translator Wiktionary Translator
ID ilghalkaapnhooaegoecclkebghfdpjp
Официальный URL https://chromewebstore.google.com/detail/wiktionary-translator/ilghalkaapnhooaegoecclkebghfdpjp
Описание Quickly look up words in wiktionary as you read
Размер файла 82.76 KB
Количество установок 223
Текущая Версия 1.0.0
Последнее Обновление 2015-03-16
Дата публикации 2015-03-16
Рейтинг 2.78/5 Всего 9 оценок
Разработчик axolotl
Тип оплаты free
Официальный сайт расширения https://github.com/Risto-Stevcev/wiktionary-translator
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wiktionary Translator",
    "description": "Quickly look up words in wiktionary as you read",
    "version": "1.0.0",
    "manifest_version": 2,
    "options_page": "options\/options.html",
    "permissions": [
        "storage",
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_scripts\/selection.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup\/popup.html"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}