leetcode-shortcuts
leetcode shortcuts
leetcode-shortcuts là gì?
leetcode-shortcuts là một tiện ích mở rộng Chrome được phát triển bởi yn.jiyu, và tính năng chính của nó là "leetcode shortcuts".
Ả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-shortcuts
Tải xuống các tệp mở rộng leetcode-shortcuts 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 shortcuts, allow you to commit your code by pressing Ctrl + Enter. Run with example test cases: Ctrl + ' Submit: Ctrl + Enter Retrieve last submitted code: Ctrl + Alt + m Reset to default (clear): Ctrl + Alt + l
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | leetcode-shortcuts |
ID | ipdbhbmdmldjkdjfbkdnipjmokkinnci |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcode-shortcuts/ipdbhbmdmldjkdjfbkdnipjmokkinnci |
Mô tả | leetcode shortcuts |
Kích Thước Tệp | 14.72 KB |
Số Lần Cài Đặt | 23 |
Phiên Bản Hiện Tại | 1.13.1.4 |
Cập Nhật Lần Cuối | 2024-01-30 |
Ngày Phát Hành | 2022-06-12 |
Nhà Phát Triển | yn.jiyu |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/Anderbone/leetcode-shortcut-browser-extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "leetcode-shortcuts", "version": "1.13.1.4", "description": "leetcode shortcuts", "icons": { "48": "icons\/leetcode_logo.png" }, "action": { "default_icon": "icons\/leetcode_logo.png", "default_title": "Leetcode shortcuts", "default_popup": "shortcut.html" }, "content_scripts": [ { "matches": [ "*:\/\/*.leetcode.com\/*" ], "js": [ "shortcut.js" ], "css": [ "shortcut.css" ] } ] } |