LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
LeetCode Mistake Tracker là gì?
LeetCode Mistake Tracker là một tiện ích mở rộng Chrome được phát triển bởi architec, và tính năng chính của nó là "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".
Ả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 LeetCode Mistake Tracker
Tải xuống các tệp mở rộng LeetCode Mistake Tracker 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
Sometimes, LeetCode users completes a question after checking the solution tab. However, if they want to come back the same question in the future, they need to go back to their LeetCode history and find that specific question. This chrome extension helps LeetCode users keep track of the LeetCode questions they would like to re-do in the future, with a countdown timer.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Mô tả | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
Kích Thước Tệp | 226 KB |
Số Lần Cài Đặt | 612 |
Phiên Bản Hiện Tại | 4.0.0 |
Cập Nhật Lần Cuối | 2023-10-18 |
Ngày Phát Hành | 2021-10-26 |
Đánh Giá | 4.50/5 Tổng số 6 Đánh Giá |
Nhà Phát Triển | architec |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/architec/mistake |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future", "version": "4.0.0", "manifest_version": 3, "name": "LeetCode Mistake Tracker", "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ], "permissions": [ "storage" ] } |