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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |