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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |