LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
Hvad er LeetCode Mistake Tracker?
LeetCode Mistake Tracker er en Chrome-udvidelse udviklet af architec, og dens hovedfunktion er "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".
Udvidelsesskærmbilleder
Download LeetCode Mistake Tracker-udvidelses-CRX-fil
Download LeetCode Mistake Tracker-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
Officiel URL | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Beskrivelse | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
Filstørrelse | 226 KB |
Antal Installationer | 612 |
Nuværende Version | 4.0.0 |
Senest Opdateret | 2023-10-18 |
Udgivelsesdato | 2021-10-26 |
Bedømmelse | 4.50/5 Samlet 6 Bedømmelser |
Udvikler | architec |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/architec/mistake |
Understøttede Sprog | 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" ] } |