LeetRooms

Multiplayer rooms for LeetCode.

What is LeetRooms?

LeetRooms is a Chrome extension developed by https://leetrooms.com, and its main feature is "Multiplayer rooms for LeetCode.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download LeetRooms Extension CRX File

Download LeetRooms extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        LeetRooms adds multiplayer rooms to LeetCode. The extension adds another panel to the new LeetCode UI so that you can chat with other people in your room while solving the questions. It's perfect for collaboration or even competition!

Note: You need to use the new LeetCode UI in order to use the LeetRooms extension.                    

Extension Basic Information

Name LeetRooms LeetRooms
ID ekldadcjhbmljcefnilihgagmnmmlfcd
Official URL https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd
Description Multiplayer rooms for LeetCode.
File Size 52.47 KB
Installation Count 3,394
Current Version 0.1.11
Last Updated 2023-05-29
Publish Date 2023-01-28
Rating 3.60/5 Total 5 Ratings
Developer https://leetrooms.com
Email [email protected]
Payment Type free
Extension Website https://github.com/marwanhawari/LeetRooms
Help Page URL https://github.com/marwanhawari/LeetRooms/issues
Privacy Policy Page URL https://leetrooms.com/privacy-policy
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "LeetRooms",
    "version": "0.1.11",
    "description": "Multiplayer rooms for LeetCode.",
    "homepage_url": "https:\/\/leetrooms.com",
    "permissions": [
        "activeTab",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/leetcode.com\/problems\/*"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "32": "icons\/32.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/leetcode.com\/*"
            ],
            "exclude_matches": [
                "https:\/\/leetcode.com\/problems\/*"
            ],
            "css": [
                "panel.css"
            ],
            "js": [
                "panel.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}