Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Duolingo Progress Bar란 무엇입니까?
Duolingo Progress Bar은(는) zorapeteri에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A linear progress bar for your Duolingo courses"입니다.
확장 프로그램 스크린샷
Duolingo Progress Bar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Features: - Get a quick and simple overview of your progress - See your percentage score on courses and stories - Go to skill by clicking it in the progress bar
확장 프로그램 기본 정보
이름 | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
공식 URL | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
설명 | A linear progress bar for your Duolingo courses |
파일 크기 | 32.42 KB |
설치 횟수 | 223 |
현재 버전 | 0.6 |
최근 업데이트 | 2022-10-10 |
출시 날짜 | 2021-09-12 |
평점 | 3.20/5 총 5 개의 평점 |
개발자 | zorapeteri |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/zorapeteri/duolingo-progress-bar |
도움말 페이지 URL | https://github.com/zorapeteri/duolingo-progress-bar/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Duolingo Progress Bar", "description": "A linear progress bar for your Duolingo courses", "version": "0.6", "content_scripts": [ { "matches": [ "https:\/\/www.duolingo.com\/*", "http:\/\/www.duolingo.com\/*" ], "js": [ "intercept.js", "content.js" ], "css": [ "scrollbar.css", "style.css" ], "run_at": "document_start" } ], "browser_action": { "default_icon": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } }, "icons": { "16": "icon\/16.png", "32": "icon\/32.png", "48": "icon\/48.png", "128": "icon\/128.png" } } |