Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

Was ist Daily-Challenge Reminder?

Daily-Challenge Reminder ist eine Chrome-Erweiterung, die von siddhantchawla entwickelt wurde, und ihr Hauptmerkmal ist "Reminds user to complete the Leetcode Daily Challenge Question".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Daily-Challenge Reminder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Daily-Challenge Reminder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
Offizielle URL https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
Beschreibung Reminds user to complete the Leetcode Daily Challenge Question
Dateigröße 1.02 MB
Installationsanzahl 360
Aktuelle Version 1.0.1
Letztes Update 2022-02-15
Veröffentlichungsdatum 2022-02-07
Bewertung 5.00/5 Insgesamt 9 Bewertungen
Entwickler siddhantchawla
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}