LeetSuite
Additional features for LeetCode
LeetSuite là gì?
LeetSuite là một tiện ích mở rộng Chrome được phát triển bởi Song, và tính năng chính của nó là "Additional features for LeetCode".
Ả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 LeetSuite
Tải xuống các tệp mở rộng LeetSuite 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
LeetSuite is completely hands-off and stays out of your way! LeetSuite works in the background so you can focus on LeetCode instead of going back and forth between answering questions and using the features of the extension. It includes a minimal popup UI that shows you what question you should retry, based on a spaced repetition algorithm. It also includes a home page that allows you to view stats on your submissions along with all the questions in your queue. Features -------------- - completely hands-off, all the features work without you doing anything! - records stats on your submissions and acceptance rate for each question - reminds you to redo questions after a certain time interval, based on spaced repetition
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | fgpjfncacnkpldghchkgcpcgehbjbofe |
URL Chính Thức | https://chrome.google.com/webstore/detail/leetsuite/fgpjfncacnkpldghchkgcpcgehbjbofe |
Mô tả | Additional features for LeetCode |
Kích Thước Tệp | 58.94 KB |
Số Lần Cài Đặt | 279 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2020-08-11 |
Ngày Phát Hành | 2020-08-11 |
Đánh Giá | 3.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Song |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetSuite", "version": "1.0.0", "description": "Additional features for LeetCode", "manifest_version": 2, "permissions": [ "storage", "webRequest", "*:\/\/*.leetcode.com\/*" ], "background": { "scripts": [ ".\/background\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/leetcode.com\/problems\/*" ], "run_at": "document_idle", "js": [ ".\/content\/content.js" ] } ], "browser_action": { "default_popup": ".\/ui\/popup\/index.html", "default_icon": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } }, "icons": { "16": ".\/icons\/favicon-16x16.png", "32": ".\/icons\/favicon-32x32.png", "48": ".\/icons\/favicon-48x48.png", "128": ".\/icons\/favicon-128x128.png" } } |