Duolingo Memo
Remembers and auto-fills your answers on Duolingo.
Duolingo Memo란 무엇입니까?
Duolingo Memo은(는) Matías Duhalde에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Remembers and auto-fills your answers on Duolingo."입니다.
확장 프로그램 스크린샷
Duolingo Memo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension was originally conceived with the intention of addressing the tediousness of some Legendary Challenges. For each Legendary Challenge (and inside a same unit), the exercise pool is quite reduced, and you're only allowed two mistakes. This makes retrying a Legendary Challenge specially annoying, since you'll most likely have to retype the same answers over and over again. This extension aims to solve that problem by remembering your correct answers and automatically filling the input with the remembered answer. Legendary challenges contain almost exclusively exercises of type "Translate", that is, those where you must translate the proposed sentence by typing the answer in the input. Nevertheless, the extension has been expanded to support other types of exercises and it will continue to be expanded in the future.
확장 프로그램 기본 정보
이름 | Duolingo Memo |
ID | oibokknlhjginjokcocnilfibocideol |
공식 URL | https://chromewebstore.google.com/detail/duolingo-memo/oibokknlhjginjokcocnilfibocideol |
설명 | Remembers and auto-fills your answers on Duolingo. |
파일 크기 | 129 KB |
설치 횟수 | 59 |
현재 버전 | 0.0.1 |
최근 업데이트 | 2023-07-17 |
출시 날짜 | 2023-07-17 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Matías Duhalde |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/MatiasDuhalde/duolingo-memo |
도움말 페이지 URL | https://github.com/MatiasDuhalde/duolingo-memo/blob/master/README.md#bugs |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Duolingo Memo", "version": "0.0.1", "description": "Remembers and auto-fills your answers on Duolingo.", "icons": { "16": "src\/static\/logo\/16x16.png", "48": "src\/static\/logo\/48x48.png", "128": "src\/static\/logo\/128x128.png", "256": "src\/static\/logo\/256x256.png" }, "permissions": [ "storage" ], "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "options_page": "src\/options\/index.html", "content_scripts": [ { "js": [ "assets\/index.ts-loader-24c57198.js" ], "matches": [ "https:\/\/www.duolingo.com\/*" ] } ], "web_accessible_resources": [ { "matches": [ "https:\/\/www.duolingo.com\/*" ], "resources": [ "assets\/constants-eac0ef40.js", "assets\/_commonjsHelpers-725317a4.js", "assets\/index.ts-50d79826.js" ], "use_dynamic_url": true } ] } |