Duolingo Progress Bar
A linear progress bar for your Duolingo courses
What is Duolingo Progress Bar?
Duolingo Progress Bar is a Chrome extension developed by zorapeteri, and its main feature is "A linear progress bar for your Duolingo courses".
Extension Screenshots
Download Duolingo Progress Bar Extension CRX File
Download Duolingo Progress Bar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
Official URL | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
Description | A linear progress bar for your Duolingo courses |
File Size | 32.42 KB |
Installation Count | 223 |
Current Version | 0.6 |
Last Updated | 2022-10-10 |
Publish Date | 2021-09-12 |
Rating | 3.20/5 Total 5 Ratings |
Developer | zorapeteri |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/zorapeteri/duolingo-progress-bar |
Help Page URL | https://github.com/zorapeteri/duolingo-progress-bar/issues |
Supported Languages | 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" } } |