LeetCode Mistake Tracker

Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future

Wat is LeetCode Mistake Tracker?

LeetCode Mistake Tracker is een Chrome-extensie ontwikkeld door architec, en de belangrijkste functie is "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie LeetCode Mistake Tracker

Download LeetCode Mistake Tracker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Sometimes, LeetCode users completes a question after checking the solution tab. However, if they want to come back the same question in the future, they need to go back to their LeetCode history and find that specific question.

This chrome extension helps LeetCode users keep track of the LeetCode questions they would like to re-do in the future, with a countdown timer.                    

Basisinformatie over de Extensie

Naam LeetCode Mistake Tracker LeetCode Mistake Tracker
ID gdkafhifmmkcifpdcfbppiieckgfpjbb
Officiële URL https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb
Beschrijving Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
Bestandsgrootte 226 KB
Aantal Installaties 612
Huidige Versie 4.0.0
Laatst Bijgewerkt 2023-10-18
Publicatiedatum 2021-10-26
Beoordeling 4.50/5 Totaal 6 Beoordelingen
Ontwikkelaar architec
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/architec/mistake
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future",
    "version": "4.0.0",
    "manifest_version": 3,
    "name": "LeetCode Mistake Tracker",
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ],
    "permissions": [
        "storage"
    ]
}