LeetBattle
1v1 LeetCode battles against your friends to improve your coding skills fast!
Wat is LeetBattle?
LeetBattle is een Chrome-extensie ontwikkeld door linden.wang04, en de belangrijkste functie is "1v1 LeetCode battles against your friends to improve your coding skills fast!".
Extensie Screenshots
Download het CRX-bestand van de extensie LeetBattle
Download LeetBattle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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 Basisinformatie over de Extensie
| Naam | |
| ID | kidgeaockeleejmeogfcaodagaigllkp |
| Officiële URL | https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp |
| Beschrijving | 1v1 LeetCode battles against your friends to improve your coding skills fast! |
| Bestandsgrootte | 2.32 MB |
| Aantal Installaties | 338 |
| Huidige Versie | 2.1.0 |
| Laatst Bijgewerkt | 2023-12-04 |
| Publicatiedatum | 2023-11-03 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | linden.wang04 |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link |
| URL van de Privacybeleid Pagina | https://sites.google.com/view/tabopener/home |
| Ondersteunde Talen | 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"
}
} | |