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