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…

Vad är Latin dictionary?

Latin dictionary är en Chrome-tillägg utvecklad av randomxpies, och dess huvudfunktion är "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

Tilläggsskärmbilder

screenshot

Ladda ner Latin dictionary-förlängningens CRX-fil

Ladda ner Latin dictionary-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
Officiell webbadress https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Beskrivning Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Filstorlek 555 KB
Antal Installationer 335
Aktuell Version 7
Senast Uppdaterad 2021-08-30
Publiceringsdatum 2020-11-17
Betyg 5.00/5 Totalt 3 Betyg
Utvecklare randomxpies
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}