LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
LC Predictor là gì?
LC Predictor là một tiện ích mở rộng Chrome được phát triển bởi https://lcpredictor.onrender.com, và tính năng chính của nó là "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".
Ả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 LC Predictor
Tải xuống các tệp mở rộng LC Predictor 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
After participating in Leetcode contests, you wait too long for seeing your new rating. By using this extension you can get your rating changes right after the completion of contest on Leetcode itself. It adds rating changes on leetcode ranking pages for all the contestants.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LC Predictor |
ID | jfhgaegpgiepniiebglgjhhfnjcibphh |
URL Chính Thức | https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh |
Mô tả | Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself. |
Kích Thước Tệp | 172 KB |
Số Lần Cài Đặt | 4,687 |
Phiên Bản Hiện Tại | 1.0.2 |
Cập Nhật Lần Cuối | 2022-12-19 |
Ngày Phát Hành | 2021-08-10 |
Đánh Giá | 3.73/5 Tổng số 15 Đánh Giá |
Nhà Phát Triển | https://lcpredictor.onrender.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://lcpredictor.onrender.com/ |
URL Trang Trợ Giúp | https://github.com/SysSn13/leetcode-rating-predictor/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LC Predictor", "version": "1.0.2", "short_name": "LC Predictor", "background": { "service_worker": "background.js" }, "action": { "default_popup": ".\/popup.html", "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "64": "\/icons\/icon64.png", "128": "\/icons\/icon128.png" } }, "description": "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.", "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "64": "\/icons\/icon64.png", "128": "\/icons\/icon128.png" }, "options_page": ".\/options.html", "permissions": [ "tabs", "storage", "scripting" ], "host_permissions": [ "https:\/\/leetcode.com\/*", "https:\/\/lcpredictor.onrender.com\/*" ] } |