LeetBattle

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

LeetBattle란 무엇입니까?

LeetBattle은(는) linden.wang04에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "1v1 LeetCode battles against your friends to improve your coding skills fast!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

LeetBattle 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 LeetBattle LeetBattle
ID kidgeaockeleejmeogfcaodagaigllkp
공식 URL https://chromewebstore.google.com/detail/leetbattle/kidgeaockeleejmeogfcaodagaigllkp
설명 1v1 LeetCode battles against your friends to improve your coding skills fast!
파일 크기 2.32 MB
설치 횟수 338
현재 버전 2.1.0
최근 업데이트 2023-12-04
출시 날짜 2023-11-03
평점 5.00/5 총 4 개의 평점
개발자 linden.wang04
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://docs.google.com/forms/d/e/1FAIpQLSc2PRbTDMcAs7mX4hFaoiszXYoQY3Wz7_mJK0MAENb6WhHWOA/viewform?usp=sf_link
개인정보 보호 정책 페이지 URL https://sites.google.com/view/tabopener/home
지원되는 언어 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"
    }
}