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.
Qu'est-ce que Constraints Blocker (Leetcode, Codechef, BS) ?
Constraints Blocker (Leetcode, Codechef, BS) est une extension Chrome développée par Sumanto Pal, et sa fonction principale est "Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Constraints Blocker (Leetcode, Codechef, BS)
Téléchargez les fichiers d'extension Constraints Blocker (Leetcode, Codechef, BS) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Constraints Blocker (Leetcode, Codechef, BS) |
ID | poadlijigkkehhbfnmdabgecngbmoaho |
URL Officiel | https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho |
Description | Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem. |
Taille du Fichier | 1.66 MB |
Nombre d'Installations | 37 |
Version Actuelle | 1.2.0.1 |
Dernière Mise à Jour | 2021-07-26 |
Date de Publication | 2021-07-10 |
Développeur | Sumanto Pal |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
URL de la Page d'Aide | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
Langues Prises en Charge | 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 } |