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…
Hvad er Latin dictionary?
Latin dictionary er en Chrome-udvidelse udviklet af randomxpies, og dens hovedfunktion er "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Udvidelsesskærmbilleder
Download Latin dictionary-udvidelses-CRX-fil
Download Latin dictionary-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/.
Grundlæggende oplysninger om udvidelsen
Navn | Latin dictionary |
ID | gnokbeehdoiaaalamhekhopdgiamfggp |
Officiel URL | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
Beskrivelse | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
Filstørrelse | 555 KB |
Antal Installationer | 335 |
Nuværende Version | 7 |
Senest Opdateret | 2021-08-30 |
Udgivelsesdato | 2020-11-17 |
Bedømmelse | 5.00/5 Samlet 3 Bedømmelser |
Udvikler | randomxpies |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |