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 |
Eメール | [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" ] } |