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…
Qu'est-ce que Latin dictionary ?
Latin dictionary est une extension Chrome développée par randomxpies, et sa fonction principale est "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Latin dictionary
Téléchargez les fichiers d'extension Latin dictionary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/.
Informations de Base sur l'Extension
Nom | Latin dictionary |
ID | gnokbeehdoiaaalamhekhopdgiamfggp |
URL Officiel | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
Description | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
Taille du Fichier | 555 KB |
Nombre d'Installations | 335 |
Version Actuelle | 7 |
Dernière Mise à Jour | 2021-08-30 |
Date de Publication | 2020-11-17 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | randomxpies |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |