Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Apa itu Duolingo Progress Bar?
Duolingo Progress Bar adalah ekstensi Chrome yang dikembangkan oleh zorapeteri, dan fitur utamanya adalah "A linear progress bar for your Duolingo courses".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Duolingo Progress Bar
Unduh file ekstensi Duolingo Progress Bar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
URL Resmi | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
Deskripsi | A linear progress bar for your Duolingo courses |
Ukuran File | 32.42 KB |
Jumlah Instalasi | 223 |
Versi Saat Ini | 0.6 |
Terakhir Diperbarui | 2022-10-10 |
Tanggal Publikasi | 2021-09-12 |
Penilaian | 3.20/5 Total 5 Penilaian |
Pengembang | zorapeteri |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/zorapeteri/duolingo-progress-bar |
URL Halaman Bantuan | https://github.com/zorapeteri/duolingo-progress-bar/issues |
Bahasa yang Didukung | 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" } } |