Leetcode Mask
Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor
ما هو Leetcode Mask؟
Leetcode Mask هو إضافة Chrome تم تطويرها بواسطة panhalkar.shreyas، والميزة الرئيسية لها هي "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Leetcode Mask
قم بتنزيل ملفات الامتداد Leetcode Mask بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
How many times have you choked or given up on a Leetcode problem early only because it was tagged as "Hard"? This extension allows you to hide the difficulty level of problems so that you can attack every problem with the same vigor.
معلومات أساسية عن التمديد
الاسم | Leetcode Mask |
ID | nmgainefgbnakmdojhcnmceaogankngk |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetcode-mask/nmgainefgbnakmdojhcnmceaogankngk |
الوصف | Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor |
حجم الملف | 78.31 KB |
عدد التثبيتات | 213 |
النسخة الحالية | 0.3 |
آخر تحديث | 2019-04-15 |
تاريخ النشر | 2019-04-15 |
تقييم | 3.25/5 مجموع تقييمات 12 |
المطور | panhalkar.shreyas |
نوع الدفع | free |
موقع الإضافة | https://thegreatheisenberg.github.io |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Mask", "description": "Stop doubting yourself. Hide difficulty level of Leetcode problems and conquer them with new vigor", "version": "0.3", "background": { "scripts": [ "js\/jquery.js", "js\/jquery-watch.min.js", "js\/background.js" ] }, "permissions": [ "storage" ], "browser_action": { "default_title": "Leetcode Mask", "default_icon": "assets\/mask_16.png", "default_popup": "options.html" }, "icons": { "16": "assets\/mask_16.png", "48": "assets\/mask_48.png", "128": "assets\/mask_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/leetcode.com\/problemset\/*", "https:\/\/leetcode.com\/problemset\/*", "http:\/\/leetcode.com\/problems\/*", "https:\/\/leetcode.com\/problems\/*", "https:\/\/leetcode.com\/tag\/*", "http:\/\/leetcode.com\/tag\/*", "https:\/\/leetcode.com\/company\/*", "http:\/\/leetcode.com\/company\/*" ], "js": [ "js\/jquery.js", "js\/jquery-watch.min.js", "js\/background.js" ] } ], "manifest_version": 2 } |