LeetCode Reminder

Reminder for leetcode practice.

Co je LeetCode Reminder?

LeetCode Reminder je rozšíření Chrome vyvinuté Zich, a jeho hlavní funkcí je „Reminder for leetcode practice.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření LeetCode Reminder

Stáhněte si soubory rozšíření LeetCode Reminder ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Practicing LeetCode for tech-job interviews? Use this reminder for constant reminders to review questions that you have previously done! The more you practice the better you become, and we are here to help you ace your next technical interview!

After downloading the extension, whenever you attempt a leetcode question, the question will automatically be added to storage for later review. You can check back at the extension by clicking it to see the question suggested for review.

Happy LeetCode grind, hope this helps!                    

Základní Informace o Rozšíření

Název LeetCode Reminder LeetCode Reminder
ID cefbdpiapcpjjjdghhofmnfcpgdhcpec
Oficiální URL https://chromewebstore.google.com/detail/leetcode-reminder/cefbdpiapcpjjjdghhofmnfcpgdhcpec
Popis Reminder for leetcode practice.
Velikost souboru 392 KB
Počet instalací 866
Aktuální Verze 1.0.2
Poslední Aktualizace 2020-05-25
Datum Vydání 2020-05-24
Vývojář Zich
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetCode Reminder",
    "version": "1.0.2",
    "description": "Reminder for leetcode practice.",
    "permissions": [
        "storage",
        "http:\/\/leetcode.com\/*",
        "http:\/\/worldclockapi.com\/api\/json\/utc\/now"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "128x128lcicon.png"
    },
    "background": {
        "scripts": [
            "background.js",
            "jquery-3.4.1.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "128x128lcicon.png",
        "48": "128x128lcicon.png",
        "128": "128x128lcicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "js": [
                "jquery-3.4.1.js",
                "contents.js"
            ]
        }
    ],
    "manifest_version": 2
}