Leetcode Hide Testcase

Simulate live interview experience by hiding failed test cases.

What is Leetcode Hide Testcase?

Leetcode Hide Testcase is a Chrome extension developed by tanaydev18, and its main feature is "Simulate live interview experience by hiding failed test cases.".

Extension Screenshots

screenshot
screenshot

Download Leetcode Hide Testcase Extension CRX File

Download Leetcode Hide Testcase extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Leetcode Hide Testcase Leetcode Hide Testcase
ID cfgbpjepoplbfjgoddjnpigedngfaenj
Official URL https://chromewebstore.google.com/detail/leetcode-hide-testcase/cfgbpjepoplbfjgoddjnpigedngfaenj
Description Simulate live interview experience by hiding failed test cases.
File Size 5.52 KB
Installation Count 106
Current Version 0.0.1
Last Updated 2022-09-09
Publish Date 2022-09-08
Developer tanaydev18
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}