LeetBattle

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

Cos'è LeetBattle?

LeetBattle è un'estensione di Chrome sviluppata da linden.wang04, e la sua funzione principale è "1v1 LeetCode battles against your friends to improve your coding skills fast!".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione LeetBattle

Scarica i file di estensione LeetBattle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome LeetBattle LeetBattle
ID kidgeaockeleejmeogfcaodagaigllkp
URL Ufficiale https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp
Descrizione 1v1 LeetCode battles against your friends to improve your coding skills fast!
Dimensione del File 2.32 MB
Conteggio Installazioni 338
Versione Corrente 2.1.0
Ultimo Aggiornamento 2023-12-04
Data di Pubblicazione 2023-11-03
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore linden.wang04
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link
URL della Pagina della Politica sulla Privacy https://sites.google.com/view/tabopener/home
Lingue Supportate 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"
    }
}