HGLT
HGLT is designed primarily to learn languages while visiting websites, but could be used to learn or remember many other things.…
¿Qué es HGLT?
HGLT es una extensión de Chrome desarrollada por Unknown, y su función principal es "HGLT is designed primarily to learn languages while visiting websites, but could be used to learn or remember many other things.…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión HGLT
Descarga archivos de extensión HGLT 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
HGLT is designed primarily to learn languages while visiting websites, but could be used to learn or remember many other things. HGLT has no servers behind or databases, so it does not store any kind of information, personal or not. We do not use any external API, we open tabs and copy the texts and links as you could do. When you select a word or phrase, this happens: - HGLT opens two pinned tabs (not focused) and looks for the translation, definition, and images of the word or phrase for you. - Then, HGLT puts all the collected results in a tooltip near the selection, along with the pronunciation. When HGTL is active and available on certain web site you will be able to: - See all the information collected in a tooltip near the selection (you could decide what information will show the tooltip). - In that tooltip, we could also hear the pronunciation of that word or phrase. - You could choose between different translations, different definitions and different images. - You can store that word or phrase previously selected and the information collected by HGLT. - You can also study those elements using the same algorithm as Memrise, Duolingo or Ankidroid. - In the study section, you can also test your pronunciation against the original pronunciation. Settings We can choose what to see in the tooltip and what languages to use. Depends on what you want to study you could change the settings to feel comfortable. Stored elements Once you decide that certain word or phrase deserves to be stored because you think that word or phrase is relevant to remember, you should click on "Add _the word or phrase_ to the store". You can access the stored elements by clicking on the tooltip (after one element was added) or in the popup. In the stored elements page, you can remove items and see all the stored information. So far information is stored locally, this means information is not shared between browsers but I'm testing a new way to share info between browsers. Study Since we store elements, a badge appears in the popup menu. Each day, a badge warns you about the items available to study that day. In each study session, you should evaluate how well you remembered that element and the algorithm decides when it will be the best time to revisit that element. I hope this extension is useful to you as much as it is to me.
Información Básica de la Extensión
Nombre | HGLT |
ID | mlddpeniehkpamjgppiinfopkojahbpm |
URL Oficial | https://chromewebstore.google.com/detail/hglt/mlddpeniehkpamjgppiinfopkojahbpm |
Descripción | HGLT is designed primarily to learn languages while visiting websites, but could be used to learn or remember many other things.… |
Tamaño del Archivo | 75.74 KB |
Cantidad de Instalaciones | 71 |
Versión Actual | 0.0.7 |
Última Actualización | 2020-02-29 |
Fecha de Publicación | 2020-02-28 |
Desarrollador | Unknown |
Tipo de Pago | free |
Idiomas Soportados | en,es-419 |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HGLT", "short_name": "Translate, learn, study and memorize languages", "version": "0.0.7", "default_locale": "en", "browser_action": { "default_icon": "images\/inactive_128.png", "default_popup": "popup\/popup.html" }, "icons": { "16": "images\/inactive_16.png", "48": "images\/inactive_48.png", "128": "images\/inactive_128.png" }, "permissions": [ "storage", "activeTab", "tabs", "contextMenus", "https:\/\/*\/", "http:\/\/*\/" ], "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "exclude_matches": [ "*:\/\/translate.google.com\/*", "*:\/\/chrome.google.com\/*" ], "js": [ "content\/highlightstoredElemets.js", "content\/markers.js", "content\/HgltElement.js", "content\/highligter\/highlighter.js", "content\/mainContent.js" ], "css": [ "content\/highligter\/hightlighter.css" ], "all_frames": true }, { "matches": [ "https:\/\/translate.google.com\/*" ], "js": [ "content\/translation\/translation.js" ], "all_frames": true }, { "matches": [ "https:\/\/www.google.com\/*" ], "js": [ "content\/imageSearch\/imageSearch.js" ], "all_frames": true } ], "web_accessible_resources": [ "content\/highligter\/*" ], "background": { "page": "background\/background.html", "persistent": false } } |