Latin dictionary

Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…

Что такое Latin dictionary?

Latin dictionary - это расширение Chrome, разработанное randomxpies, и его основная функция - "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

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

screenshot

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

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

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

                        Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to open the context menu, select 'Translate to English'.

Technical details:
I am looking up the word's lemma, then I check for translation on https://www.online-latin-dictionary.com/latin-english-dictionary.php. If I don't get anything I check again with http://www.perseus.tufts.edu/.                    

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

Название Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
Официальный URL https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Описание Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Размер файла 555 KB
Количество установок 335
Текущая Версия 7
Последнее Обновление 2021-08-30
Дата публикации 2020-11-17
Рейтинг 5.00/5 Всего 3 оценок
Разработчик randomxpies
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Latin dictionary",
    "version": "7",
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false,
        "default_icon": {
            "16": "logo.png",
            "24": "logo_big.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentscript.css"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "logo.png",
        "24": "logo_big.png"
    },
    "web_accessible_resources": [
        "*.ttf"
    ]
}