Bogosearch - LeetCode Rooms

Add rooms to LeetCode to compete solving problems with friends.

Was ist Bogosearch - LeetCode Rooms?

Bogosearch - LeetCode Rooms ist eine Chrome-Erweiterung, die von Sunny Guan entwickelt wurde, und ihr Hauptmerkmal ist "Add rooms to LeetCode to compete solving problems with friends.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Bogosearch - LeetCode Rooms-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bogosearch - LeetCode Rooms-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bogosearch - LeetCode Rooms Bogosearch - LeetCode Rooms
ID elcfbhjmhecbkfilbohmojhoiidpokjf
Offizielle URL https://chromewebstore.google.com/detail/bogosearch-leetcode-rooms/elcfbhjmhecbkfilbohmojhoiidpokjf
Beschreibung Add rooms to LeetCode to compete solving problems with friends.
Dateigröße 2.88 MB
Installationsanzahl 217
Aktuelle Version 0.4.3
Letztes Update 2023-02-22
Veröffentlichungsdatum 2022-10-25
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Sunny Guan
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/sunnyguan/leetcode-rooms-chrome-extension
Hilfeseite URL https://github.com/sunnyguan/leetcode-rooms-chrome-extension
Unterstützte Sprachen 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"
    }
}