LeetRooms

Multiplayer rooms for LeetCode.

LeetRoomsとは何ですか?

LeetRoomsはhttps://leetrooms.comによって開発されたChromeの拡張機能で、その主な機能は「Multiplayer rooms for LeetCode.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

LeetRooms拡張機能のCRXファイルをダウンロード

LeetRooms拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}