Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

Cos'è Daily-Challenge Reminder?

Daily-Challenge Reminder è un'estensione di Chrome sviluppata da siddhantchawla, e la sua funzione principale è "Reminds user to complete the Leetcode Daily Challenge Question".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Daily-Challenge Reminder

Scarica i file di estensione Daily-Challenge Reminder in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
URL Ufficiale https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
Descrizione Reminds user to complete the Leetcode Daily Challenge Question
Dimensione del File 1.02 MB
Conteggio Installazioni 360
Versione Corrente 1.0.1
Ultimo Aggiornamento 2022-02-15
Data di Pubblicazione 2022-02-07
Valutazione 5.00/5 Totale 9 Valutazioni
Sviluppatore siddhantchawla
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}