LeetCoder Pro
LeetCode Extension
LeetCoder Pro là gì?
LeetCoder Pro là một tiện ích mở rộng Chrome được phát triển bởi lc_chrome_extension, và tính năng chính của nó là "LeetCode Extension".
Ả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 LeetCoder Pro
Tải xuống các tệp mở rộng LeetCoder Pro 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
A simple LeetCode browser extension that provides software engineer interview prepers key problem submission data points. 🤗 💯 Note: In order to show data you must have submitted solutions before. To enable this extension, please log into (or register) your LeetCode account! Data refresh typically takes 1~2 seconds. Statistics definition Session(# of Times Done): Two submissions count as two different sessions if they are submitted more than one day apart. Acceptance Rate(personal): Ratio of accepted submissions to all submissions.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LeetCoder Pro |
ID | nkjhlfmlgoadihojkbchmjebljpgiopb |
URL Chính Thức | https://chromewebstore.google.com/detail/leetcoder-pro/nkjhlfmlgoadihojkbchmjebljpgiopb |
Mô tả | LeetCode Extension |
Kích Thước Tệp | 148 KB |
Số Lần Cài Đặt | 30 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-01-24 |
Ngày Phát Hành | 2022-01-24 |
Nhà Phát Triển | lc_chrome_extension |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/colinshenc/LeetCoder-Pro |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetCoder Pro", "description": "LeetCode Extension", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "popup.html", "default_icon": "\/images\/logo6.png" }, "permissions": [ "cookies", "storage" ], "host_permissions": [ "*:\/\/*.leetcode.com\/" ], "background": { "service_worker": "utils.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.leetcode.com\/problemset\/*" ], "js": [ "submission.js" ] } ], "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" }, "description": "Open popup.html" } } } |