LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
Cos'è LeetCode Mistake Tracker?
LeetCode Mistake Tracker è un'estensione di Chrome sviluppata da architec, e la sua funzione principale è "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione LeetCode Mistake Tracker
Scarica i file di estensione LeetCode Mistake Tracker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
URL Ufficiale | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Descrizione | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
Dimensione del File | 226 KB |
Conteggio Installazioni | 612 |
Versione Corrente | 4.0.0 |
Ultimo Aggiornamento | 2023-10-18 |
Data di Pubblicazione | 2021-10-26 |
Valutazione | 4.50/5 Totale 6 Valutazioni |
Sviluppatore | architec |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/architec/mistake |
Lingue Supportate | 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" ] } |