Leetcode Hide Testcase

Simulate live interview experience by hiding failed test cases.

Co je Leetcode Hide Testcase?

Leetcode Hide Testcase je rozšíření Chrome vyvinuté tanaydev18, a jeho hlavní funkcí je „Simulate live interview experience by hiding failed test cases.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Leetcode Hide Testcase

Stáhněte si soubory rozšíření Leetcode Hide Testcase 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í

                        This extension allows you to hide test case when wrong answer is submitted on Leetcode. This feature simulates realistic coding round experience where test cases are not shown. Toggle easily between hidden and visible test case mode. Syncs your saved settings across all devices.                    

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

Název Leetcode Hide Testcase Leetcode Hide Testcase
ID cfgbpjepoplbfjgoddjnpigedngfaenj
Oficiální URL https://chromewebstore.google.com/detail/leetcode-hide-testcase/cfgbpjepoplbfjgoddjnpigedngfaenj
Popis Simulate live interview experience by hiding failed test cases.
Velikost souboru 5.52 KB
Počet instalací 106
Aktuální Verze 0.0.1
Poslední Aktualizace 2022-09-09
Datum Vydání 2022-09-08
Vývojář tanaydev18
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Leetcode Hide Testcase",
    "version": "0.0.1",
    "description": "Simulate live interview experience by hiding failed test cases.",
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ]
}