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是由randomxpies開發的Chrome擴展程式,該擴展的主要功能是“Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…”。

擴展截圖

screenshot

下載Latin dictionary擴展crx文件

下載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
官方網址 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"
    ]
}