LeetRooms

Multiplayer rooms for LeetCode.

LeetRooms là gì?

LeetRooms là một tiện ích mở rộng Chrome được phát triển bởi https://leetrooms.com, và tính năng chính của nó là "Multiplayer rooms for LeetCode.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng LeetRooms

Tải xuống các tệp mở rộng LeetRooms dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên LeetRooms LeetRooms
ID ekldadcjhbmljcefnilihgagmnmmlfcd
URL Chính Thức https://chromewebstore.google.com/detail/leetrooms/ekldadcjhbmljcefnilihgagmnmmlfcd
Mô tả Multiplayer rooms for LeetCode.
Kích Thước Tệp 52.47 KB
Số Lần Cài Đặt 3,394
Phiên Bản Hiện Tại 0.1.11
Cập Nhật Lần Cuối 2023-05-29
Ngày Phát Hành 2023-01-28
Đánh Giá 3.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://leetrooms.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/marwanhawari/LeetRooms
URL Trang Trợ Giúp https://github.com/marwanhawari/LeetRooms/issues
URL Trang Chính Sách Bảo Mật https://leetrooms.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}