LeetCode Reminder
Reminder for leetcode practice.
LeetCode Reminderとは何ですか?
LeetCode ReminderはZichによって開発されたChromeの拡張機能で、その主な機能は「Reminder for leetcode practice.」です。
拡張機能のスクリーンショット
LeetCode Reminder拡張機能のCRXファイルをダウンロード
LeetCode Reminder拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Practicing LeetCode for tech-job interviews? Use this reminder for constant reminders to review questions that you have previously done! The more you practice the better you become, and we are here to help you ace your next technical interview! After downloading the extension, whenever you attempt a leetcode question, the question will automatically be added to storage for later review. You can check back at the extension by clicking it to see the question suggested for review. Happy LeetCode grind, hope this helps!
拡張機能の基本情報
名前 | LeetCode Reminder |
ID | cefbdpiapcpjjjdghhofmnfcpgdhcpec |
公式URL | https://chromewebstore.google.com/detail/leetcode-reminder/cefbdpiapcpjjjdghhofmnfcpgdhcpec |
説明 | Reminder for leetcode practice. |
ファイルサイズ | 392 KB |
インストール数 | 866 |
現在のバージョン | 1.0.2 |
最終更新日 | 2020-05-25 |
公開日 | 2020-05-24 |
開発者 | Zich |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCode Reminder", "version": "1.0.2", "description": "Reminder for leetcode practice.", "permissions": [ "storage", "http:\/\/leetcode.com\/*", "http:\/\/worldclockapi.com\/api\/json\/utc\/now" ], "browser_action": { "default_popup": "popup.html", "default_icon": "128x128lcicon.png" }, "background": { "scripts": [ "background.js", "jquery-3.4.1.js" ], "persistent": false }, "icons": { "16": "128x128lcicon.png", "48": "128x128lcicon.png", "128": "128x128lcicon.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "jquery-3.4.1.js", "contents.js" ] } ], "manifest_version": 2 } |