Leetcode Hide Testcase

Simulate live interview experience by hiding failed test cases.

Leetcode Hide Testcaseคืออะไร?

Leetcode Hide Testcase เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tanaydev18 และคุณลักษณะหลักของมันคือ "Simulate live interview experience by hiding failed test cases."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Leetcode Hide Testcase

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}