LeetBattle

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

LeetBattleคืออะไร?

LeetBattle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย linden.wang04 และคุณลักษณะหลักของมันคือ "1v1 LeetCode battles against your friends to improve your coding skills fast!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LeetBattle

ดาวน์โหลดไฟล์ส่วนขยาย LeetBattle ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}