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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}