Duolingo Progress Bar
A linear progress bar for your Duolingo courses
ما هو Duolingo Progress Bar؟
Duolingo Progress Bar هو إضافة Chrome تم تطويرها بواسطة zorapeteri، والميزة الرئيسية لها هي "A linear progress bar for your Duolingo courses".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Duolingo Progress Bar
قم بتنزيل ملفات الامتداد Duolingo Progress Bar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" } } |