Leetcode List Stats

Shows solved/total for Leetcode lists

Vad är Leetcode List Stats?

Leetcode List Stats är en Chrome-tillägg utvecklad av nurgasemetey, och dess huvudfunktion är "Shows solved/total for Leetcode lists".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Leetcode List Stats-förlängningens CRX-fil

Ladda ner Leetcode List Stats-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Leetcode List Stats Leetcode List Stats
ID plpmpjdanlhakphajpkakpleiomfkpmg
Officiell webbadress https://chromewebstore.google.com/detail/leetcode-list-stats/plpmpjdanlhakphajpkakpleiomfkpmg
Beskrivning Shows solved/total for Leetcode lists
Filstorlek 185 KB
Antal Installationer 200
Aktuell Version 1.0.6
Senast Uppdaterad 2021-11-27
Publiceringsdatum 2021-10-24
Utvecklare nurgasemetey
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/nurgasemetey/leetcode-list-stats
Stödda Språk 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
}