Leetcode format
Adds Format code button on leetcode to format the code using Prettier code formatter
ما هو Leetcode format؟
Leetcode format هو إضافة Chrome تم تطويرها بواسطة Madhur Ahuja، والميزة الرئيسية لها هي "Adds Format code button on leetcode to format the code using Prettier code formatter".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Leetcode format
قم بتنزيل ملفات الامتداد Leetcode format بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This Google chrome extension adds the Format button to the LeetCode code editor. Currently supported programming languages are Java, C++, JavaScript, TypeScript and Dart. Supports LeetCode old and new UI both, including dynamic layout. Release Notes 1.9: * Bug fix with dynamic layout Release Notes 1.8: * Bug fixes Release Notes 1.7: * Bug fixes for new UI * Add hotkey support for old UI as well Release Notes v1.6: * Added hotkey support (CTRL + ALT + F) Release Notes v1.5: * Added support for both old and new UI.
معلومات أساسية عن التمديد
الاسم | Leetcode format |
ID | imogghebhifnnlgogigikjecilkicfpp |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/leetcode-format/imogghebhifnnlgogigikjecilkicfpp |
الوصف | Adds Format code button on leetcode to format the code using Prettier code formatter |
حجم الملف | 2.42 MB |
عدد التثبيتات | 5,832 |
النسخة الحالية | 1.9 |
آخر تحديث | 2023-12-25 |
تاريخ النشر | 2020-12-27 |
تقييم | 4.28/5 مجموع تقييمات 29 |
المطور | Madhur Ahuja |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://madhur.co.in |
عنوان صفحة المساعدة | https://github.com/madhur/leetcode-format-chrome-extension/issues |
عنوان صفحة سياسة الخصوصية | https://www.madhur.co.in/leetcode-format.html |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode format", "version": "1.9", "manifest_version": 3, "description": "Adds Format code button on leetcode to format the code using Prettier code formatter", "homepage_url": "https:\/\/github.com\/madhur\/leetcode-format-chrome-extension", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.leetcode.com\/*", "https:\/\/*.leetcode.cn\/*" ] } ], "web_accessible_resources": [ { "resources": [ "dart-style.js", "standalone.js", "parser-babel.mjs", "parser-typescript.mjs", "parser-java.js", "beautify.js", "script.js" ], "matches": [ "https:\/\/*.leetcode.com\/*", "https:\/\/*.leetcode.cn\/*" ] } ] } |