Duolingo Progress Bar
A linear progress bar for your Duolingo courses
Duolingo Progress Bar là gì?
Duolingo Progress Bar là một tiện ích mở rộng Chrome được phát triển bởi zorapeteri, và tính năng chính của nó là "A linear progress bar for your Duolingo courses".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Duolingo Progress Bar
Tải xuống các tệp mở rộng Duolingo Progress Bar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | kppleianlialhpkifogjjfldgifhlgpg |
URL Chính Thức | https://chrome.google.com/webstore/detail/duolingo-progress-bar/kppleianlialhpkifogjjfldgifhlgpg |
Mô tả | A linear progress bar for your Duolingo courses |
Kích Thước Tệp | 32.42 KB |
Số Lần Cài Đặt | 223 |
Phiên Bản Hiện Tại | 0.6 |
Cập Nhật Lần Cuối | 2022-10-10 |
Ngày Phát Hành | 2021-09-12 |
Đánh Giá | 3.20/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | zorapeteri |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/zorapeteri/duolingo-progress-bar |
URL Trang Trợ Giúp | https://github.com/zorapeteri/duolingo-progress-bar/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |