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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}