LeetCode Mistake Tracker
Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
Apa itu LeetCode Mistake Tracker?
LeetCode Mistake Tracker adalah ekstensi Chrome yang dikembangkan oleh architec, dan fitur utamanya adalah "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LeetCode Mistake Tracker
Unduh file ekstensi LeetCode Mistake Tracker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | LeetCode Mistake Tracker |
ID | gdkafhifmmkcifpdcfbppiieckgfpjbb |
URL Resmi | https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb |
Deskripsi | Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future |
Ukuran File | 226 KB |
Jumlah Instalasi | 612 |
Versi Saat Ini | 4.0.0 |
Terakhir Diperbarui | 2023-10-18 |
Tanggal Publikasi | 2021-10-26 |
Penilaian | 4.50/5 Total 6 Penilaian |
Pengembang | architec |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/architec/mistake |
Bahasa yang Didukung | 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" ] } |