Leetcode Hide Testcase

Simulate live interview experience by hiding failed test cases.

Leetcode Hide Testcase là gì?

Leetcode Hide Testcase là một tiện ích mở rộng Chrome được phát triển bởi tanaydev18, và tính năng chính của nó là "Simulate live interview experience by hiding failed test cases.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Leetcode Hide Testcase

Tải xuống các tệp mở rộng Leetcode Hide Testcase dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Leetcode Hide Testcase Leetcode Hide Testcase
ID cfgbpjepoplbfjgoddjnpigedngfaenj
URL Chính Thức https://chromewebstore.google.com/detail/leetcode-hide-testcase/cfgbpjepoplbfjgoddjnpigedngfaenj
Mô tả Simulate live interview experience by hiding failed test cases.
Kích Thước Tệp 5.52 KB
Số Lần Cài Đặt 106
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2022-09-09
Ngày Phát Hành 2022-09-08
Nhà Phát Triển tanaydev18
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}