Leetcode List Stats

Shows solved/total for Leetcode lists

Co to jest Leetcode List Stats?

Leetcode List Stats to rozszerzenie Chrome opracowane przez nurgasemetey, a jego główną funkcją jest „Shows solved/total for Leetcode lists”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Leetcode List Stats

Pobierz pliki rozszerzeń Leetcode List Stats 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

                        As you know Leetcode doesn't show number of solved problems in lists. 
With this extension you can view stats for Leetcode problem lists. 

Source code: https://github.com/nurgasemetey/leetcode-list-stats                    

Podstawowe informacje o rozszerzeniu

Nazwa Leetcode List Stats Leetcode List Stats
ID plpmpjdanlhakphajpkakpleiomfkpmg
Oficjalny URL https://chromewebstore.google.com/detail/leetcode-list-stats/plpmpjdanlhakphajpkakpleiomfkpmg
Opis Shows solved/total for Leetcode lists
Rozmiar pliku 185 KB
Liczba instalacji 200
Aktualna Wersja 1.0.6
Ostatnia Aktualizacja 2021-11-27
Data Publikacji 2021-10-24
Deweloper nurgasemetey
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/nurgasemetey/leetcode-list-stats
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode List Stats",
    "short_name": "LeetcodeListStats",
    "description": "Shows solved\/total for Leetcode lists",
    "version": "1.0.6",
    "permissions": [
        "*:\/\/*.leetcode.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Leetcode List Stats",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}