Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Co to jest Duolingo Progress Bar?
Duolingo Progress Bar to rozszerzenie Chrome opracowane przez zorapeteri, a jego główną funkcją jest „A linear progress bar for your Duolingo courses”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Duolingo Progress Bar
Pobierz pliki rozszerzeń Duolingo Progress Bar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
Oficjalny URL | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
Opis | A linear progress bar for your Duolingo courses |
Rozmiar pliku | 32.42 KB |
Liczba instalacji | 223 |
Aktualna Wersja | 0.6 |
Ostatnia Aktualizacja | 2022-10-10 |
Data Publikacji | 2021-09-12 |
Ocena | 3.20/5 Łącznie 5 Oceny |
Deweloper | zorapeteri |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/zorapeteri/duolingo-progress-bar |
Adres URL Strony Pomocy | https://github.com/zorapeteri/duolingo-progress-bar/issues |
Obsługiwane Języki | 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" } } |