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" ] } |