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…

Co to jest Latin dictionary?

Latin dictionary to rozszerzenie Chrome opracowane przez randomxpies, a jego główną funkcją jest „Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Latin dictionary

Pobierz pliki rozszerzeń Latin dictionary w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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/.                    

Podstawowe informacje o rozszerzeniu

Nazwa Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
Oficjalny URL https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Opis Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Rozmiar pliku 555 KB
Liczba instalacji 335
Aktualna Wersja 7
Ostatnia Aktualizacja 2021-08-30
Data Publikacji 2020-11-17
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper randomxpies
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}