Daily-Challenge Reminder
Reminds user to complete the Leetcode Daily Challenge Question
Daily-Challenge Reminderคืออะไร?
Daily-Challenge Reminder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย siddhantchawla และคุณลักษณะหลักของมันคือ "Reminds user to complete the Leetcode Daily Challenge Question"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Daily-Challenge Reminder
ดาวน์โหลดไฟล์ส่วนขยาย Daily-Challenge Reminder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension sends notifications periodically as reminders to the user to complete the Leetcode Daily Challenge Question and eventually helps them to be more consistent in their Problem Solving journey. It uses the saved cookies in the browser to fetch User Specific data from Leetcode APIs. Note: The user must be signed in to Leetcode for the extension to send notifications and work optimally.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Daily-Challenge Reminder |
ID | fgpphonilhabeglmgpbabbnamimmbihf |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf |
คำอธิบาย | Reminds user to complete the Leetcode Daily Challenge Question |
ขนาดไฟล์ | 1.02 MB |
จำนวนการติดตั้ง | 360 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2022-02-15 |
วันที่เผยแพร่ | 2022-02-07 |
คะแนน | 5.00/5 รวมทั้งหมด 9 คะแนน |
ผู้พัฒนา | siddhantchawla |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Daily-Challenge Reminder", "description": "Reminds user to complete the Leetcode Daily Challenge Question", "version": "1.0.1", "manifest_version": 3, "background": { "service_worker": "background.js" }, "icons": { "128": "logo5.png" }, "permissions": [ "cookies", "alarms", "activeTab", "notifications" ], "host_permissions": [ "https:\/\/leetcode.com\/*" ], "action": { "default_popup": "popup.html" } } |