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 |
官方網址 | 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 } |