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…
Cos'è Latin dictionary?
Latin dictionary è un'estensione di Chrome sviluppata da randomxpies, e la sua funzione principale è "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Latin dictionary
Scarica i file di estensione Latin dictionary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/. Informazioni di Base sull'Estensione
| Nome | |
| ID | gnokbeehdoiaaalamhekhopdgiamfggp |
| URL Ufficiale | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
| Descrizione | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
| Dimensione del File | 555 KB |
| Conteggio Installazioni | 335 |
| Versione Corrente | 7 |
| Ultimo Aggiornamento | 2021-08-30 |
| Data di Pubblicazione | 2020-11-17 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | randomxpies |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |