LeetBattle

1v1 LeetCode battles against your friends to improve your coding skills fast!

Was ist LeetBattle?

LeetBattle ist eine Chrome-Erweiterung, die von linden.wang04 entwickelt wurde, und ihr Hauptmerkmal ist "1v1 LeetCode battles against your friends to improve your coding skills fast!".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot
screenshot

LeetBattle-Erweiterungs-CRX-Datei herunterladen

Laden Sie LeetBattle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name LeetBattle LeetBattle
ID kidgeaockeleejmeogfcaodagaigllkp
Offizielle URL https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp
Beschreibung 1v1 LeetCode battles against your friends to improve your coding skills fast!
Dateigröße 2.32 MB
Installationsanzahl 338
Aktuelle Version 2.1.0
Letztes Update 2023-12-04
Veröffentlichungsdatum 2023-11-03
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler linden.wang04
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link
URL der Datenschutzrichtlinien-Seite https://sites.google.com/view/tabopener/home
Unterstützte Sprachen 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"
    }
}