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 je Latin dictionary?

Latin dictionary je rozšíření Chrome vyvinuté randomxpies, a jeho hlavní funkcí je „Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Latin dictionary

Stáhněte si soubory rozšíření Latin dictionary ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
Oficiální URL https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Popis Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Velikost souboru 555 KB
Počet instalací 335
Aktuální Verze 7
Poslední Aktualizace 2021-08-30
Datum Vydání 2020-11-17
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář randomxpies
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    ]
}