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是由architec開發的Chrome擴展程式,該擴展的主要功能是“Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future”。
擴展截圖
下載LeetCode Mistake Tracker擴展crx文件
下載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 |
官方網址 | 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" ] } |