Leetcode Filter
Filter Leetcode questions based on difficulty
ما هو Leetcode Filter؟
Leetcode Filter هو إضافة Chrome تم تطويرها بواسطة joyeshkakkar، والميزة الرئيسية لها هي "Filter Leetcode questions based on difficulty".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Leetcode Filter
قم بتنزيل ملفات الامتداد Leetcode Filter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
Filter Leetcode questions based on difficulty(Easy, Medium, Hard) and if they are Locked.
معلومات أساسية عن التمديد
الاسم | Leetcode Filter |
ID | ccggononkibenbebjpjgaholancgmkal |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetcode-filter/ccggononkibenbebjpjgaholancgmkal |
الوصف | Filter Leetcode questions based on difficulty |
حجم الملف | 149 KB |
عدد التثبيتات | 19 |
النسخة الحالية | 0.1 |
آخر تحديث | 2017-01-10 |
تاريخ النشر | 2017-01-09 |
تقييم | 3.00/5 مجموع تقييمات 2 |
المطور | joyeshkakkar |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Filter", "description": "Filter Leetcode questions based on difficulty", "version": "0.1", "background": { "scripts": [ "jquery.js", "jquery-watch.min.js", "background.js" ] }, "permissions": [ "storage" ], "browser_action": { "default_title": "Leetcode Filters", "default_icon": "icon16.png", "default_popup": "options.html" }, "icons": { "16": "icon16.png", "48": "icon48.png" }, "content_scripts": [ { "matches": [ "http:\/\/leetcode.com\/*", "https:\/\/leetcode.com\/*" ], "js": [ "jquery.js", "jquery-watch.min.js", "background.js" ] } ], "options_ui": { "page": "options.html", "chrome_style": true }, "manifest_version": 2 } |