LeetBattle

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

Vad är LeetBattle?

LeetBattle är en Chrome-tillägg utvecklad av linden.wang04, och dess huvudfunktion är "1v1 LeetCode battles against your friends to improve your coding skills fast!".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot
screenshot

Ladda ner LeetBattle-förlängningens CRX-fil

Ladda ner LeetBattle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn LeetBattle LeetBattle
ID kidgeaockeleejmeogfcaodagaigllkp
Officiell webbadress https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp
Beskrivning 1v1 LeetCode battles against your friends to improve your coding skills fast!
Filstorlek 2.32 MB
Antal Installationer 338
Aktuell Version 2.1.0
Senast Uppdaterad 2023-12-04
Publiceringsdatum 2023-11-03
Betyg 5.00/5 Totalt 4 Betyg
Utvecklare linden.wang04
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link
URL till Sekretesspolicy Sidan https://sites.google.com/view/tabopener/home
Stödda Språk 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"
    }
}