LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
LeetCode Mistake Trackerคืออะไร?
LeetCode Mistake Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย architec และคุณลักษณะหลักของมันคือ "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetCode Mistake Tracker
ดาวน์โหลดไฟล์ส่วนขยาย LeetCode Mistake Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
คำอธิบาย | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
ขนาดไฟล์ | 226 KB |
จำนวนการติดตั้ง | 612 |
เวอร์ชันปัจจุบัน | 4.0.0 |
อัปเดตครั้งล่าสุด | 2023-10-18 |
วันที่เผยแพร่ | 2021-10-26 |
คะแนน | 4.50/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | architec |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/architec/mistake |
ภาษาที่รองรับ | 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" ] } |