DuoListen
An extension that removes the hint sentence from a Duolingo.
¿Qué es DuoListen?
DuoListen es una extensión de Chrome desarrollada por Morgan, y su función principal es "An extension that removes the hint sentence from a Duolingo.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión DuoListen
Descarga archivos de extensión DuoListen 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
This extension increases the difficulty of the popular language learning app Duolingo (https://www.duolingo.com/learn). In Duolingo users perform various exercises to learn a new language. One of those exercises asks users to translate a sentence from the target language to their own language. It gives the users an audio prompt and a written prompt. This extension removes the written prompt, which forces users to develop their listening comprehension. I wrote this extension because this is a feature that helped me learn languages faster. I believe that other Duo users will also find this extension useful. Technically speaking, the extension itself is pretty simple. It only runs when the user is on the /skill route and it looks for DOM changes that would indicate that a new exercise has loaded and, if that exercise provides a hint sentence, hides the hint.
Información Básica de la Extensión
Nombre | DuoListen |
ID | gpmkkbobjchajdgikibjpgnpohffnlbd |
URL Oficial | https://chromewebstore.google.com/detail/duolisten/gpmkkbobjchajdgikibjpgnpohffnlbd |
Descripción | An extension that removes the hint sentence from a Duolingo. |
Tamaño del Archivo | 12.09 KB |
Cantidad de Instalaciones | 217 |
Versión Actual | 0.1 |
Última Actualización | 2020-10-04 |
Fecha de Publicación | 2020-10-03 |
Calificación | 3.36/5 Total de 11 Calificaciones |
Desarrollador | Morgan |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "DuoListen", "version": "0.1", "description": "An extension that removes the hint sentence from a Duolingo.", "content_scripts": [ { "matches": [ "https:\/\/*.duolingo.com\/*" ], "js": [ "index.js" ] } ], "icons": { "128": "duo.png" } } |