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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة DuoListen
قم بتنزيل ملفات الامتداد DuoListen بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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" } } |