Instant Dictionary

View definition in both English and Chinese as you browse the web.

Что такое Instant Dictionary?

Instant Dictionary - это расширение Chrome, разработанное Peter Pi, и его основная функция - "View definition in both English and Chinese as you browse the web.".

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

screenshot

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

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

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

                        IMPORTANT:
 - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome.

Instant Dictionary helps to make the translation become more convenient.

Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.                    

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

Название Instant Dictionary Instant Dictionary
ID hjpcapcphfbomgjkghdiiogelgikcmpa
Официальный URL https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa
Описание View definition in both English and Chinese as you browse the web.
Размер файла 696 KB
Количество установок 121
Текущая Версия 1.0.6
Последнее Обновление 2022-01-08
Дата публикации 2020-04-18
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Peter Pi
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Instant Dictionary",
    "version": "1.0.6",
    "description": "View definition in both English and Chinese as you browse the web.",
    "author": "Peter Pi",
    "icons": {
        "128": "icon_128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "css": [
                "Styles.css"
            ],
            "js": [
                "content.js",
                "jquery-3.4.1.min.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ]
}