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