Custom Dictionary

Store words and their definitions, and highlight them on websites

Что такое Custom Dictionary?

Custom Dictionary - это расширение Chrome, разработанное Riki, и его основная функция - "Store words and their definitions, and highlight them on websites".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This highly performant chrome extension allows you to keep track of a custom dictionary of words. Words will be highlighted on web pages, and their definitions will appear as tooltips when hovered over.                    

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

Название Custom Dictionary Custom Dictionary
ID gpenoconcglejhmajbjgajimkdpmcogg
Официальный URL https://chromewebstore.google.com/detail/custom-dictionary/gpenoconcglejhmajbjgajimkdpmcogg
Описание Store words and their definitions, and highlight them on websites
Размер файла 44.67 KB
Количество установок 55
Текущая Версия 1.2.2
Последнее Обновление 2022-05-12
Дата публикации 2022-04-25
Разработчик Riki
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/rikilele/custom-dict-chrome
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Dictionary",
    "version": "1.2.2",
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Custom Dictionary",
        "default_popup": "popup\/popup.html"
    },
    "description": "Store words and their definitions, and highlight them on websites",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "Riki Singh Khorana",
    "background": {
        "service_worker": "background\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript\/contentScript.js"
            ],
            "css": [
                "contentScript\/contentScript.css"
            ],
            "match_about_blank": true
        }
    ],
    "offline_enabled": true,
    "options_page": "settings\/settings.html",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "short_name": "Custom Dict"
}