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) là gì?

Constraints Blocker (Leetcode, Codechef, BS) là một tiện ích mở rộng Chrome được phát triển bởi Sumanto Pal, và tính năng chính của nó là "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.".

Ả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 Constraints Blocker (Leetcode, Codechef, BS)

Tải xuống các tệp mở rộng Constraints Blocker (Leetcode, Codechef, BS) 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

                        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                    

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

Tên Constraints Blocker (Leetcode, Codechef, BS) Constraints Blocker (Leetcode, Codechef, BS)
ID poadlijigkkehhbfnmdabgecngbmoaho
URL Chính Thức https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho
Mô tả Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.
Kích Thước Tệp 1.66 MB
Số Lần Cài Đặt 37
Phiên Bản Hiện Tại 1.2.0.1
Cập Nhật Lần Cuối 2021-07-26
Ngày Phát Hành 2021-07-10
Nhà Phát Triển Sumanto Pal
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
URL Trang Trợ Giúp https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
Ngôn Ngữ Được Hỗ Trợ 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
}