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."입니다.
확장 프로그램 스크린샷
DuoListen 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |