Constraints Blocker (Leetcode, Codechef, BS)

Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.

Constraints Blocker (Leetcode, Codechef, BS)คืออะไร?

Constraints Blocker (Leetcode, Codechef, BS) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sumanto Pal และคุณลักษณะหลักของมันคือ "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Constraints Blocker (Leetcode, Codechef, BS)

ดาวน์โหลดไฟล์ส่วนขยาย Constraints Blocker (Leetcode, Codechef, BS) ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem. This helps to simulate real interview experience practice as in an interview you won't be revealed the constraints. The constraints give major hints of how to solve the problem. For example, if n<=20 then it's obvious the problem will be solved using some brute-force approach.
Supported Platform for now are leetcode.com and binarysearch.com                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Constraints Blocker (Leetcode, Codechef, BS) Constraints Blocker (Leetcode, Codechef, BS)
ID poadlijigkkehhbfnmdabgecngbmoaho
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho
คำอธิบาย Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.
ขนาดไฟล์ 1.66 MB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 1.2.0.1
อัปเดตครั้งล่าสุด 2021-07-26
วันที่เผยแพร่ 2021-07-10
ผู้พัฒนา Sumanto Pal
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
URL หน้าช่วยเหลือ https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Constraints Blocker (Leetcode, Codechef, BS)",
    "description": "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.",
    "version": "1.2.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "logo.png",
            "32": "logo.png",
            "48": "logo.png",
            "128": "logo.png"
        }
    },
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.binarysearch.com\/*"
            ],
            "js": [
                "binarysearch.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.leetcode.com\/*"
            ],
            "js": [
                "leetcode.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/*.codechef.com\/*"
            ],
            "js": [
                "codechef.js"
            ],
            "run_at": "document_end"
        }
    ],
    "offline_enabled": true
}