DuoListen

An extension that removes the hint sentence from a Duolingo.

DuoListen क्या है?

DuoListen Morgan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that removes the hint sentence from a Duolingo."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DuoListen एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम DuoListen DuoListen
ID gpmkkbobjchajdgikibjpgnpohffnlbd
आधिकारिक URL https://chromewebstore.google.com/detail/duolisten/gpmkkbobjchajdgikibjpgnpohffnlbd
विवरण An extension that removes the hint sentence from a Duolingo.
फ़ाइल का आकार 12.09 KB
स्थापना संख्या 217
वर्तमान संस्करण 0.1
अंतिम अपडेट 2020-10-04
प्रकाशन तिथि 2020-10-03
रेटिंग 3.36/5 कुल 11 रेटिंग्स
डेवलपर Morgan
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    }
}