DuoListen

An extension that removes the hint sentence from a Duolingo.

DuoListenとは何ですか?

DuoListenはMorganによって開発されたChromeの拡張機能で、その主な機能は「An extension that removes the hint sentence from a Duolingo.」です。

拡張機能のスクリーンショット

screenshot

DuoListen拡張機能のCRXファイルをダウンロード

DuoListen拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}