Definer Of Words

Defines Words You Highlight With Mouse Cursor

Что такое Definer Of Words?

Definer Of Words - это расширение Chrome, разработанное kevin.teal1, и его основная функция - "Defines Words You Highlight With Mouse Cursor".

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

screenshot

Скачать файл CRX расширения Definer Of Words

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

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

                        This is an page dictionary. All you have to do is highlight a word on the page with the mouse cursor and then an information box will appear with the definition of the word. 

This app will be great for those learning the English language.                    

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

Название Definer Of Words Definer Of Words
ID apgbjnebgghbmgpdcllmonpdeecjlmbm
Официальный URL https://chrome.google.com/webstore/detail/definer-of-words/apgbjnebgghbmgpdcllmonpdeecjlmbm
Описание Defines Words You Highlight With Mouse Cursor
Размер файла 45.1 KB
Количество установок 169
Текущая Версия 1.0
Последнее Обновление 2015-07-21
Дата публикации 2015-07-21
Рейтинг 5.00/5 Всего 1 оценок
Разработчик kevin.teal1
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Definer Of Words",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Defines Words You Highlight With Mouse Cursor",
    "browser_action": {
        "default_icon": "off.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-2.1.4.min.js"
            ]
        }
    ]
}