Daily-Challenge Reminder
Reminds user to complete the Leetcode Daily Challenge Question
Qu'est-ce que Daily-Challenge Reminder ?
Daily-Challenge Reminder est une extension Chrome développée par siddhantchawla, et sa fonction principale est "Reminds user to complete the Leetcode Daily Challenge Question".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Daily-Challenge Reminder
Téléchargez les fichiers d'extension Daily-Challenge Reminder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Daily-Challenge Reminder |
ID | fgpphonilhabeglmgpbabbnamimmbihf |
URL Officiel | https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf |
Description | Reminds user to complete the Leetcode Daily Challenge Question |
Taille du Fichier | 1.02 MB |
Nombre d'Installations | 360 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2022-02-15 |
Date de Publication | 2022-02-07 |
Évaluation | 5.00/5 Total 9 Évaluations |
Développeur | siddhantchawla |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |