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
官方網址 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"
    }
}