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…

What is Latin dictionary?

Latin dictionary is a Chrome extension developed by randomxpies, and its main feature is "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

Extension Screenshots

screenshot

Download Latin dictionary Extension CRX File

Download Latin dictionary extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
Official URL https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Description Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
File Size 555 KB
Installation Count 335
Current Version 7
Last Updated 2021-08-30
Publish Date 2020-11-17
Rating 5.00/5 Total 3 Ratings
Developer randomxpies
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}