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.

Cos'è Constraints Blocker (Leetcode, Codechef, BS)?

Constraints Blocker (Leetcode, Codechef, BS) è un'estensione di Chrome sviluppata da Sumanto Pal, e la sua funzione principale è "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Constraints Blocker (Leetcode, Codechef, BS)

Scarica i file di estensione Constraints Blocker (Leetcode, Codechef, BS) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Constraints Blocker (Leetcode, Codechef, BS) Constraints Blocker (Leetcode, Codechef, BS)
ID poadlijigkkehhbfnmdabgecngbmoaho
URL Ufficiale https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho
Descrizione Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.
Dimensione del File 1.66 MB
Conteggio Installazioni 37
Versione Corrente 1.2.0.1
Ultimo Aggiornamento 2021-07-26
Data di Pubblicazione 2021-07-10
Sviluppatore Sumanto Pal
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
URL della Pagina di Aiuto https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension
Lingue Supportate 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
}