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…
Was ist Latin dictionary?
Latin dictionary ist eine Chrome-Erweiterung, die von randomxpies entwickelt wurde, und ihr Hauptmerkmal ist "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Erweiterungsscreenshots
Latin dictionary-Erweiterungs-CRX-Datei herunterladen
Laden Sie Latin dictionary-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gnokbeehdoiaaalamhekhopdgiamfggp |
| Offizielle URL | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
| Beschreibung | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
| Dateigröße | 555 KB |
| Installationsanzahl | 335 |
| Aktuelle Version | 7 |
| Letztes Update | 2021-08-30 |
| Veröffentlichungsdatum | 2020-11-17 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | randomxpies |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |