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é es Latin dictionary?
Latin dictionary es una extensión de Chrome desarrollada por randomxpies, y su función principal es "Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Latin dictionary
Descarga archivos de extensión Latin dictionary en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/.
Información Básica de la Extensión
Nombre | Latin dictionary |
ID | gnokbeehdoiaaalamhekhopdgiamfggp |
URL Oficial | https://chromewebstore.google.com/detail/latin-dictionary/gnokbeehdoiaaalamhekhopdgiamfggp |
Descripción | Translate single Latin words to English easily with two clicks of a mouse. Select the Latin word, click mouse's right button to… |
Tamaño del Archivo | 555 KB |
Cantidad de Instalaciones | 335 |
Versión Actual | 7 |
Última Actualización | 2021-08-30 |
Fecha de Publicación | 2020-11-17 |
Calificación | 5.00/5 Total de 3 Calificaciones |
Desarrollador | randomxpies |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |