Leetcode Hide Testcase

Simulate live interview experience by hiding failed test cases.

Leetcode Hide Testcaseとは何ですか?

Leetcode Hide Testcaseはtanaydev18によって開発されたChromeの拡張機能で、その主な機能は「Simulate live interview experience by hiding failed test cases.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Leetcode Hide Testcase拡張機能のCRXファイルをダウンロード

Leetcode Hide Testcase拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Leetcode Hide Testcase Leetcode Hide Testcase
ID cfgbpjepoplbfjgoddjnpigedngfaenj
公式URL https://chromewebstore.google.com/detail/leetcode-hide-testcase/cfgbpjepoplbfjgoddjnpigedngfaenj
説明 Simulate live interview experience by hiding failed test cases.
ファイルサイズ 5.52 KB
インストール数 106
現在のバージョン 0.0.1
最終更新日 2022-09-09
公開日 2022-09-08
開発者 tanaydev18
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}