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
官方網址 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"
    }
}