LeetRooms

Multiplayer rooms for LeetCode.

LeetRooms क्या है?

LeetRooms https://leetrooms.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Multiplayer rooms for LeetCode."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में LeetRooms एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम LeetRooms LeetRooms
ID ekldadcjhbmljcefnilihgagmnmmlfcd
आधिकारिक URL https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd
विवरण Multiplayer rooms for LeetCode.
फ़ाइल का आकार 52.47 KB
स्थापना संख्या 3,394
वर्तमान संस्करण 0.1.11
अंतिम अपडेट 2023-05-29
प्रकाशन तिथि 2023-01-28
रेटिंग 3.60/5 कुल 5 रेटिंग्स
डेवलपर https://leetrooms.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/marwanhawari/LeetRooms
सहायता पृष्ठ URL https://github.com/marwanhawari/LeetRooms/issues
गोपनीयता नीति पृष्ठ URL https://leetrooms.com/privacy-policy
समर्थित भाषाएँ 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"
    }
}