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)是由Sumanto Pal开发的Chrome扩展程序,该扩展的主要功能是“Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.”。

扩展截图

screenshot
screenshot

下载Constraints Blocker (Leetcode, Codechef, BS)扩展crx文件

下载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
}