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…

O que é Latin dictionary?

Latin dictionary é uma extensão do Chrome desenvolvida por randomxpies, e sua principal característica é "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Latin dictionary

Baixe arquivos de extensão Latin dictionary no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome Latin dictionary Latin dictionary
ID gnokbeehdoiaaalamhekhopdgiamfggp
URL Oficial https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp
Descrição Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…
Tamanho do Arquivo 555 KB
Contagem de Instalações 335
Versão Atual 7
Última Atualização 2021-08-30
Data de Publicação 2020-11-17
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor randomxpies
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}