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 Extension will hide the constraints of the given problem as constraints reveal major hints to solve the given problem."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Constraints Blocker (Leetcode, Codechef, BS) एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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) |
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 } |