Duo Strength
Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu
Duo Strength란 무엇입니까?
Duo Strength은(는) Toran Sharma에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu"입니다.
확장 프로그램 스크린샷
Duo Strength 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Duo Strength is a browser extension that adds back into the Duolingo webpage an indication of the strength of each skill. Any skills that need strengthening (i.e. not at 100% strength) are displayed in a clickable list at the top of the tree for quick access. Designed to provide much of the information on duome.eu/Username/progress on your duolingo tree itself. If you have comments bugs or issues, or want to help improve this extension, please visit its GitHub page: https://github.com/ToranSharma/Duo-Strength
확장 프로그램 기본 정보
이름 | Duo Strength |
ID | oghbejipobmlmgfbdjmfgnnhepngcmle |
공식 URL | https://chromewebstore.google.com/detail/duo-strength/oghbejipobmlmgfbdjmfgnnhepngcmle |
설명 | Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu |
파일 크기 | 99.53 KB |
설치 횟수 | 2,078 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2022-11-14 |
출시 날짜 | 2020-07-02 |
평점 | 4.63/5 총 40 개의 평점 |
개발자 | Toran Sharma |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ToranSharma/Duo-Strength |
도움말 페이지 URL | https://github.com/ToranSharma/Duo-Strength |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duo Strength", "description": "Adds individual skill strengths back into the duolingo webpage, similar to data on duome.eu", "version": "2.1.0", "manifest_version": 3, "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png" }, "background": { "service_worker": "background.js" }, "action": { "show_matches": [ "https:\/\/www.duolingo.com\/*", "https:\/\/preview.duolingo.com\/*", "https:\/\/www-internal.duolingo.com\/*" ], "default_icon": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png" }, "default_title": "Duo Strength", "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.duolingo.com\/*", "https:\/\/preview.duolingo.com\/*", "https:\/\/www-internal.duolingo.com\/*" ], "js": [ "duoStrength.js" ] } ], "web_accessible_resources": [ { "resources": [ "images\/focus.svg", "images\/defocus.svg", "images\/popout.svg", "images\/loading.svg", "styles\/stylesheet.css", "defaultOptions.json", "disabledOptions.json" ], "matches": [ "https:\/\/www.duolingo.com\/*", "https:\/\/preview.duolingo.com\/*", "https:\/\/www-internal.duolingo.com\/*" ] } ], "permissions": [ "storage" ], "options_ui": { "page": "options.html", "open_in_tab": false } } |