LeetBattle
1v1 LeetCode battles against your friends to improve your coding skills fast!
Hvad er LeetBattle?
LeetBattle er en Chrome-udvidelse udviklet af linden.wang04, og dens hovedfunktion er "1v1 LeetCode battles against your friends to improve your coding skills fast!".
Udvidelsesskærmbilleder
Download LeetBattle-udvidelses-CRX-fil
Download LeetBattle-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | LeetBattle |
ID | kidgeaockeleejmeogfcaodagaigllkp |
Officiel URL | https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp |
Beskrivelse | 1v1 LeetCode battles against your friends to improve your coding skills fast! |
Filstørrelse | 2.32 MB |
Antal Installationer | 338 |
Nuværende Version | 2.1.0 |
Senest Opdateret | 2023-12-04 |
Udgivelsesdato | 2023-11-03 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | linden.wang04 |
[email protected] | |
Betalingsmetode | free |
Hjælpeside-URL | https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link |
URL til Fortrolighedspolitik Side | https://sites.google.com/view/tabopener/home |
Understøttede Sprog | 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" } } |