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.
Was ist Constraints Blocker (Leetcode, Codechef, BS)?
Constraints Blocker (Leetcode, Codechef, BS) ist eine Chrome-Erweiterung, die von Sumanto Pal entwickelt wurde, und ihr Hauptmerkmal ist "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.".
Erweiterungsscreenshots
Constraints Blocker (Leetcode, Codechef, BS)-Erweiterungs-CRX-Datei herunterladen
Laden Sie Constraints Blocker (Leetcode, Codechef, BS)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Constraints Blocker (Leetcode, Codechef, BS) |
ID | poadlijigkkehhbfnmdabgecngbmoaho |
Offizielle URL | https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho |
Beschreibung | Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem. |
Dateigröße | 1.66 MB |
Installationsanzahl | 37 |
Aktuelle Version | 1.2.0.1 |
Letztes Update | 2021-07-26 |
Veröffentlichungsdatum | 2021-07-10 |
Entwickler | Sumanto Pal |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
Hilfeseite URL | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
Unterstützte Sprachen | 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 } |