LeetCode Mate
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…
LeetCode Mate là gì?
LeetCode Mate là một tiện ích mở rộng Chrome được phát triển bởi JasonSun, và tính năng chính của nó là "LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use…".
Ả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 Mate
Tải xuống các tệp mở rộng LeetCode Mate 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
LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use when running custom user input and read debug print information using the left hand size panel. The output box is too small to read out useful information without scrolling. This extension addresses this issue by creating alternative resizable, and draggable dialog panel for run and submit code and display their run results accordingly. User can also toggle the UI of the extension by a keyboard shortcut. It also supports Toggling cursor blinking and bracket matching for the CodeMirror Editor. Both LeetCode-CN and LeetCode are supported.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LeetCode Mate |
ID | phdjfdamgpemogokbkjeidpekchgmhem |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-mate/phdjfdamgpemogokbkjeidpekchgmhem |
Mô tả | LeetCode Mate is a Chrome extension to improve your LeetCode Experience! The current LeetCode UI can sometimes be hard to use… |
Kích Thước Tệp | 564 KB |
Số Lần Cài Đặt | 108 |
Phiên Bản Hiện Tại | 2.0.0 |
Cập Nhật Lần Cuối | 2021-01-20 |
Ngày Phát Hành | 2020-12-29 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | JasonSun |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/bethandtownes/leetcode-mate |
URL Trang Trợ Giúp | https://github.com/bethandtownes/leetcode-mate |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.0.0", "name": "LeetCode Mate", "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/problems\/*", "https:\/\/leetcode-cn.com\/problems\/*" ], "css": [ "codemirror.css", "material.css", "content.styles.css" ], "js": [ "contentScript.bundle.js" ] } ], "background": { "scripts": [ "background.bundle.js" ], "persistent": false }, "permissions": [ "storage", "tabs" ], "web_accessible_resources": [ "page_script.js", "content.styles.css", "cache.json", "cache_cn.json", "icon-128.png", "icon-34.png" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |