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…

Apa itu Latin dictionary?

Latin dictionary adalah ekstensi Chrome yang dikembangkan oleh randomxpies, dan fitur utamanya adalah "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Latin dictionary

Unduh file ekstensi Latin dictionary dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
URL Resmi https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Deskripsi Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Ukuran File 555 KB
Jumlah Instalasi 335
Versi Saat Ini 7
Terakhir Diperbarui 2021-08-30
Tanggal Publikasi 2020-11-17
Penilaian 5.00/5 Total 3 Penilaian
Pengembang randomxpies
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}