Tibetan Dictionary

Select a word on the webpage and open popup to look up in the dictionary

Что такое Tibetan Dictionary?

Tibetan Dictionary - это расширение Chrome, разработанное Kharag Edition, и его основная функция - "Select a word on the webpage and open popup to look up in the dictionary".

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

screenshot
screenshot

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

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

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

                        Simple Tibetan dictionary  plugin that let you look for word meaning by simply entering the word in textbox.                    

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

Название Tibetan Dictionary Tibetan Dictionary
ID adfffbhmkignepdggmlpojjplehfcnma
Официальный URL https://chromewebstore.google.com/detail/tibetan-dictionary/adfffbhmkignepdggmlpojjplehfcnma
Описание Select a word on the webpage and open popup to look up in the dictionary
Размер файла 2.43 MB
Количество установок 47
Текущая Версия 1.0.1
Последнее Обновление 2022-08-07
Дата публикации 2022-08-02
Рейтинг 5.00/5 Всего 4 оценок
Разработчик Kharag Edition
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension
URL страницы помощи https://github.com/CodingWithTashi/tibetan_dictionary_chrome_extension/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tibetan Dictionary",
    "description": "Select a word on the webpage and open popup to look up in the dictionary",
    "manifest_version": 3,
    "version": "1.0.1",
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/content.js"
            ],
            "css": [
                "content\/content.css"
            ]
        }
    ],
    "author": "KharagEdition",
    "action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "24": "assets\/icon24.png",
            "32": "assets\/icon32.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    }
}