Leetcode format
Adds Format code button on leetcode to format the code using Prettier code formatter
Leetcode format là gì?
Leetcode format là một tiện ích mở rộng Chrome được phát triển bởi Madhur Ahuja, và tính năng chính của nó là "Adds Format code button on leetcode to format the code using Prettier code formatter".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Leetcode format
Tải xuống các tệp mở rộng Leetcode format dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Leetcode format |
ID | imogghebhifnnlgogigikjecilkicfpp |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-format/imogghebhifnnlgogigikjecilkicfpp |
Mô tả | Adds Format code button on leetcode to format the code using Prettier code formatter |
Kích Thước Tệp | 2.42 MB |
Số Lần Cài Đặt | 5,832 |
Phiên Bản Hiện Tại | 1.9 |
Cập Nhật Lần Cuối | 2023-12-25 |
Ngày Phát Hành | 2020-12-27 |
Đánh Giá | 4.28/5 Tổng số 29 Đánh Giá |
Nhà Phát Triển | Madhur Ahuja |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://madhur.co.in |
URL Trang Trợ Giúp | https://github.com/madhur/leetcode-format-chrome-extension/issues |
URL Trang Chính Sách Bảo Mật | https://www.madhur.co.in/leetcode-format.html |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |