DuoListen

An extension that removes the hint sentence from a Duolingo.

DuoListenคืออะไร?

DuoListen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Morgan และคุณลักษณะหลักของมันคือ "An extension that removes the hint sentence from a Duolingo."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DuoListen

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}