Daily-Challenge Reminder

Reminds user to complete the Leetcode Daily Challenge Question

Co to jest Daily-Challenge Reminder?

Daily-Challenge Reminder to rozszerzenie Chrome opracowane przez siddhantchawla, a jego główną funkcją jest „Reminds user to complete the Leetcode Daily Challenge Question”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Daily-Challenge Reminder

Pobierz pliki rozszerzeń Daily-Challenge Reminder w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Daily-Challenge Reminder Daily-Challenge Reminder
ID fgpphonilhabeglmgpbabbnamimmbihf
Oficjalny URL https://chromewebstore.google.com/detail/daily-challenge-reminder/fgpphonilhabeglmgpbabbnamimmbihf
Opis Reminds user to complete the Leetcode Daily Challenge Question
Rozmiar pliku 1.02 MB
Liczba instalacji 360
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2022-02-15
Data Publikacji 2022-02-07
Ocena 5.00/5 Łącznie 9 Oceny
Deweloper siddhantchawla
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}