Daily-Challenge Reminder
Reminds user to complete the Leetcode Daily Challenge Question
Vad är Daily-Challenge Reminder?
Daily-Challenge Reminder är en Chrome-tillägg utvecklad av siddhantchawla, och dess huvudfunktion är "Reminds user to complete the Leetcode Daily Challenge Question".
Tilläggsskärmbilder
Ladda ner Daily-Challenge Reminder-förlängningens CRX-fil
Ladda ner Daily-Challenge Reminder-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Daily-Challenge Reminder |
ID | fgpphonilhabeglmgpbabbnamimmbihf |
Officiell webbadress | https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf |
Beskrivning | Reminds user to complete the Leetcode Daily Challenge Question |
Filstorlek | 1.02 MB |
Antal Installationer | 360 |
Aktuell Version | 1.0.1 |
Senast Uppdaterad | 2022-02-15 |
Publiceringsdatum | 2022-02-07 |
Betyg | 5.00/5 Totalt 9 Betyg |
Utvecklare | siddhantchawla |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |