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.
Co to jest Constraints Blocker (Leetcode, Codechef, BS)?
Constraints Blocker (Leetcode, Codechef, BS) to rozszerzenie Chrome opracowane przez Sumanto Pal, a jego główną funkcją jest „Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Constraints Blocker (Leetcode, Codechef, BS)
Pobierz pliki rozszerzeń Constraints Blocker (Leetcode, Codechef, BS) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Constraints Blocker (Leetcode, Codechef, BS) |
ID | poadlijigkkehhbfnmdabgecngbmoaho |
Oficjalny URL | https://chromewebstore.google.com/detail/constraints-blocker-leetc/poadlijigkkehhbfnmdabgecngbmoaho |
Opis | Chrome Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem. |
Rozmiar pliku | 1.66 MB |
Liczba instalacji | 37 |
Aktualna Wersja | 1.2.0.1 |
Ostatnia Aktualizacja | 2021-07-26 |
Data Publikacji | 2021-07-10 |
Deweloper | Sumanto Pal |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
Adres URL Strony Pomocy | https://github.com/sumantopal07/Constraints-Blocker-Chrome-Extension |
Obsługiwane Języki | 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 } |