LeetBrawls

The only way to compete with your friends and conquer coding questions

LeetBrawlsคืออะไร?

LeetBrawls เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.leetbrawls.xyz และคุณลักษณะหลักของมันคือ "The only way to compete with your friends and conquer coding questions"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Create a LeetBrawl, set up problem filters, invite your friends and complete a leetcode a day to win!

1. Click "Create a New LeetBrawl" button 
2. Fill out name, pick the number of problems to brawl until and choose filters 
3. Click on the Settings icon in the top right and find your LeetBrawl ID 
4. Send the LeetBrawl ID to your friends to join 
5. Solve enough problems to win! 

Join our Discord! https://discord.gg/ympvRJRx8C                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ LeetBrawls LeetBrawls
ID mobmhjffgkhcfgecphgbnmclenebgefn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/leetbrawls/mobmhjffgkhcfgecphgbnmclenebgefn
คำอธิบาย The only way to compete with your friends and conquer coding questions
ขนาดไฟล์ 2.95 MB
จำนวนการติดตั้ง 53
เวอร์ชันปัจจุบัน 1.0.9
อัปเดตครั้งล่าสุด 2024-02-07
วันที่เผยแพร่ 2024-01-13
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://www.leetbrawls.xyz
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.leetbrawls.xyz/
URL หน้าช่วยเหลือ https://www.leetbrawls.xyz/
URL หน้านโยบายความเป็นส่วนตัว https://www.freeprivacypolicy.com/live/bf2a9f20-6250-42dd-8e07-5bf8a734dd31
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LeetBrawls",
    "description": "The only way to compete with your friends and conquer coding questions",
    "version": "1.0.9",
    "manifest_version": 3,
    "action": {
        "default_popup": "index.html"
    },
    "icons": {
        "16": "leetbattles_16.png",
        "48": "leetbattles_48.png",
        "128": "leetbattles_128.png"
    },
    "permissions": [
        "tabs",
        "storage",
        "identity",
        "webRequest"
    ],
    "host_permissions": [
        "*:\/\/*.leetcode.com\/*"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.leetcode.com\/problems\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "css": [
                "\/static\/css\/content.css"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "oauth2": {
        "client_id": "243591261919-32v6rnuqnnvp4d07jhu0etu39bri7kju.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    }
}