Define

Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…

Что такое Define?

Define - это расширение Chrome, разработанное Abhinav Mehta, и его основная функция - "Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…".

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

screenshot

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

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

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

                        Define helps you to find the definition of any word on your browser without you changing the Tab.
1. Select the word you wanted the Definition for.
2. Right click and select Define word or Click on the define Chrome Extension icon                    

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

Название Define Define
ID ghekgieimigknomennplpoiomnldfbaa
Официальный URL https://chromewebstore.google.com/detail/define/ghekgieimigknomennplpoiomnldfbaa
Описание Define helps you to find the definition of any word on your browser without you changing the Tab. 1. Select the word you wanted the…
Размер файла 16.1 KB
Количество установок 35
Текущая Версия 0.0.1
Последнее Обновление 2020-09-28
Дата публикации 2020-09-28
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Abhinav Mehta
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Define",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "eventPage.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "popUp\/index.html",
        "default_title": "Define"
    },
    "permissions": [
        "contextMenus",
        "activeTab"
    ]
}