DuoListen

An extension that removes the hint sentence from a Duolingo.

Co je DuoListen?

DuoListen je rozšíření Chrome vyvinuté Morgan, a jeho hlavní funkcí je „An extension that removes the hint sentence from a Duolingo.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření DuoListen

Stáhněte si soubory rozšíření DuoListen ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název DuoListen DuoListen
ID gpmkkbobjchajdgikibjpgnpohffnlbd
Oficiální URL https://chromewebstore.google.com/detail/duolisten/gpmkkbobjchajdgikibjpgnpohffnlbd
Popis An extension that removes the hint sentence from a Duolingo.
Velikost souboru 12.09 KB
Počet instalací 217
Aktuální Verze 0.1
Poslední Aktualizace 2020-10-04
Datum Vydání 2020-10-03
Hodnocení 3.36/5 Celkem 11 Hodnocení
Vývojář Morgan
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}