Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Wat is Duolingo Progress Bar?
Duolingo Progress Bar is een Chrome-extensie ontwikkeld door zorapeteri, en de belangrijkste functie is "A linear progress bar for your Duolingo courses".
Extensie Screenshots
Download het CRX-bestand van de extensie Duolingo Progress Bar
Download Duolingo Progress Bar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
Officiële URL | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
Beschrijving | A linear progress bar for your Duolingo courses |
Bestandsgrootte | 32.42 KB |
Aantal Installaties | 223 |
Huidige Versie | 0.6 |
Laatst Bijgewerkt | 2022-10-10 |
Publicatiedatum | 2021-09-12 |
Beoordeling | 3.20/5 Totaal 5 Beoordelingen |
Ontwikkelaar | zorapeteri |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/zorapeteri/duolingo-progress-bar |
Help Pagina-URL | https://github.com/zorapeteri/duolingo-progress-bar/issues |
Ondersteunde Talen | 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" } } |