LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
Co je LeetCode Mistake Tracker?
LeetCode Mistake Tracker je rozšíření Chrome vyvinuté architec, a jeho hlavní funkcí je „Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření LeetCode Mistake Tracker
Stáhněte si soubory rozšíření LeetCode Mistake Tracker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
Oficiální URL | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Popis | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
Velikost souboru | 226 KB |
Počet instalací | 612 |
Aktuální Verze | 4.0.0 |
Poslední Aktualizace | 2023-10-18 |
Datum Vydání | 2021-10-26 |
Hodnocení | 4.50/5 Celkem 6 Hodnocení |
Vývojář | architec |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/architec/mistake |
Podporované Jazyky | 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" ] } |