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" } } |