LeetBattle
1v1 LeetCode battles against your friends to improve your coding skills fast!
LeetBattle là gì?
LeetBattle là một tiện ích mở rộng Chrome được phát triển bởi linden.wang04, và tính năng chính của nó là "1v1 LeetCode battles against your friends to improve your coding skills fast!".
Ả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 LeetBattle
Tải xuống các tệp mở rộng LeetBattle 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 Leetcode 1v1 platform to make data structures and algorithms fun! Create a private match with your friends or find a match online - more features incoming. * update * - elo rating - post-game chat: players will be put in a private chat room after the game to discuss - you will now win the game when your opponent disconnects
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | LeetBattle |
ID | kidgeaockeleejmeogfcaodagaigllkp |
URL Chính Thức | https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp |
Mô tả | 1v1 LeetCode battles against your friends to improve your coding skills fast! |
Kích Thước Tệp | 2.32 MB |
Số Lần Cài Đặt | 338 |
Phiên Bản Hiện Tại | 2.1.0 |
Cập Nhật Lần Cuối | 2023-12-04 |
Ngày Phát Hành | 2023-11-03 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | linden.wang04 |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link |
URL Trang Chính Sách Bảo Mật | https://sites.google.com/view/tabopener/home |
Ngôn Ngữ Được Hỗ Trợ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "LeetBattle", "description": "1v1 LeetCode battles against your friends to improve your coding skills fast!", "version": "2.1.0", "manifest_version": 3, "action": { "default_popup": "popup.html" }, "minimum_chrome_version": "116", "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "notifications", "storage" ], "host_permissions": [ "http:\/\/localhost:3000\/*", "https:\/\/leet-battle.fly.dev\/*" ], "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" } } |