LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
What is LeetCode Mistake Tracker?
LeetCode Mistake Tracker is a Chrome extension developed by architec, and its main feature is "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".
Extension Screenshots
Download LeetCode Mistake Tracker Extension CRX File
Download LeetCode Mistake Tracker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
Official URL | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Description | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
File Size | 226 KB |
Installation Count | 612 |
Current Version | 4.0.0 |
Last Updated | 2023-10-18 |
Publish Date | 2021-10-26 |
Rating | 4.50/5 Total 6 Ratings |
Developer | architec |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/architec/mistake |
Supported Languages | 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" ] } |