Bogosearch - LeetCode Rooms

Add rooms to LeetCode to compete solving problems with friends.

ما هو Bogosearch - LeetCode Rooms؟

Bogosearch - LeetCode Rooms هو إضافة Chrome تم تطويرها بواسطة Sunny Guan، والميزة الرئيسية لها هي "Add rooms to LeetCode to compete solving problems with friends.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Bogosearch - LeetCode Rooms

قم بتنزيل ملفات الامتداد Bogosearch - LeetCode Rooms بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Are you sad that binarysearch.com is down? Want to practice LeetCode questions and flex on your friends too? This is the perfect extension for you! We added rooms to LeetCode so you can race to solve problems with your friends with chat, leaderboard, topic selection, unlimited number of questions, and more. 

Getting Started:

1. Install this extension. 
2. Go to a LeetCode page.
3. Join or create a room.
4. Invite friends!

Features:

1. Leaderboard
2. Blind 75 + NeetCode 150 problemsets
3. Specific problem selection
4. Chat with @username mention                    

معلومات أساسية عن التمديد

الاسم Bogosearch - LeetCode Rooms Bogosearch - LeetCode Rooms
ID elcfbhjmhecbkfilbohmojhoiidpokjf
عنوان URL الرسمي https://chromewebstore.google.com/detail/bogosearch-leetcode-rooms/elcfbhjmhecbkfilbohmojhoiidpokjf
الوصف Add rooms to LeetCode to compete solving problems with friends.
حجم الملف 2.88 MB
عدد التثبيتات 217
النسخة الحالية 0.4.3
آخر تحديث 2023-02-22
تاريخ النشر 2022-10-25
تقييم 5.00/5 مجموع تقييمات 5
المطور Sunny Guan
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/sunnyguan/leetcode-rooms-chrome-extension
عنوان صفحة المساعدة https://github.com/sunnyguan/leetcode-rooms-chrome-extension
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bogosearch - LeetCode Rooms",
    "version": "0.4.3",
    "description": "Add rooms to LeetCode to compete solving problems with friends.",
    "content_scripts": [
        {
            "js": [
                "scripts\/questions_title_mapping.js",
                "scripts\/socket.io.2.js",
                "scripts\/constants.js",
                "scripts\/utils.js",
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "128": "128.png",
        "64": "64.png"
    }
}