Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

O que é Daily-Challenge Reminder?

Daily-Challenge Reminder é uma extensão do Chrome desenvolvida por siddhantchawla, e sua principal característica é "Reminds user to complete the Leetcode Daily Challenge Question".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Daily-Challenge Reminder

Baixe arquivos de extensão Daily-Challenge Reminder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
URL Oficial https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
Descrição Reminds user to complete the Leetcode Daily Challenge Question
Tamanho do Arquivo 1.02 MB
Contagem de Instalações 360
Versão Atual 1.0.1
Última Atualização 2022-02-15
Data de Publicação 2022-02-07
Classificação 5.00/5 Total de 9 Avaliações
Desenvolvedor siddhantchawla
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}