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 - это расширение Chrome, разработанное architec, и его основная функция - "Help LeetCode users keep track of the LeetCode questions they would like to re-do in the future".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения LeetCode Mistake Tracker

Скачайте файлы расширений LeetCode Mistake Tracker в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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"
    ]
}