LeetCode Mistake Tracker

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

LeetCode Mistake Tracker क्या है?

LeetCode Mistake Tracker architec द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LeetCode Mistake Tracker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम LeetCode Mistake Tracker LeetCode Mistake Tracker
ID gdkafhifmmkcifpdcfbppiieckgfpjbb
आधिकारिक URL https://chromewebstore.google.com/detail/leetcode-mistake-tracker/gdkafhifmmkcifpdcfbppiieckgfpjbb
विवरण Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future
फ़ाइल का आकार 226 KB
स्थापना संख्या 612
वर्तमान संस्करण 4.0.0
अंतिम अपडेट 2023-10-18
प्रकाशन तिथि 2021-10-26
रेटिंग 4.50/5 कुल 6 रेटिंग्स
डेवलपर architec
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/architec/mistake
समर्थित भाषाएँ 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"
    ]
}