Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

¿Qué es Daily-Challenge Reminder?

Daily-Challenge Reminder es una extensión de Chrome desarrollada por siddhantchawla, y su función principal es "Reminds user to complete the Leetcode Daily Challenge Question".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Daily-Challenge Reminder

Descarga archivos de extensión Daily-Challenge Reminder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
URL Oficial https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
Descripción Reminds user to complete the Leetcode Daily Challenge Question
Tamaño del Archivo 1.02 MB
Cantidad de Instalaciones 360
Versión Actual 1.0.1
Última Actualización 2022-02-15
Fecha de Publicación 2022-02-07
Calificación 5.00/5 Total de 9 Calificaciones
Desarrollador siddhantchawla
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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"
    }
}