LeetBattle
1v1 LeetCode battles against your friends to improve your coding skills fast!
什么是LeetBattle?
LeetBattle是由linden.wang04开发的Chrome扩展程序,该扩展的主要功能是“1v1 LeetCode battles against your friends to improve your coding skills fast!”。
扩展截图
下载LeetBattle扩展crx文件
下载LeetBattle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | kidgeaockeleejmeogfcaodagaigllkp |
| 官方URL | https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp |
| 简介 | 1v1 LeetCode battles against your friends to improve your coding skills fast! |
| 文件大小 | 2.32 MB |
| 安装次数 | 338 |
| 当前版本 | 2.1.0 |
| 更新时间 | 2023-12-04 |
| 上架时间 | 2023-11-03 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | linden.wang04 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link |
| 隐私政策页面URL | https://sites.google.com/view/tabopener/home |
| 支持的语言 | 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"
}
} | |