LeetBattle

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

What is LeetBattle?

LeetBattle is a Chrome extension developed by linden.wang04, and its main feature is "1v1 LeetCode battles against your friends to improve your coding skills fast!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download LeetBattle Extension CRX File

Download LeetBattle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name LeetBattle LeetBattle
ID kidgeaockeleejmeogfcaodagaigllkp
Official URL https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp
Description 1v1 LeetCode battles against your friends to improve your coding skills fast!
File Size 2.32 MB
Installation Count 338
Current Version 2.1.0
Last Updated 2023-12-04
Publish Date 2023-11-03
Rating 5.00/5 Total 4 Ratings
Developer linden.wang04
Email [email protected]
Payment Type free
Help Page URL https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link
Privacy Policy Page URL https://sites.google.com/view/tabopener/home
Supported Languages 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"
    }
}