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…

ما هو Latin dictionary؟

Latin dictionary هو إضافة Chrome تم تطويرها بواسطة randomxpies، والميزة الرئيسية لها هي "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Latin dictionary

قم بتنزيل ملفات الامتداد Latin dictionary بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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

معلومات أساسية عن التمديد

الاسم Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
عنوان URL الرسمي https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
الوصف Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
حجم الملف 555 KB
عدد التثبيتات 335
النسخة الحالية 7
آخر تحديث 2021-08-30
تاريخ النشر 2020-11-17
تقييم 5.00/5 مجموع تقييمات 3
المطور randomxpies
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
    ]
}