Discord Video Chat

Place Discord Video Channel and Text Channel side-by-side.

Discord Video Chat là gì?

Discord Video Chat là một tiện ích mở rộng Chrome được phát triển bởi dsngiem, và tính năng chính của nó là "Place Discord Video Channel and Text Channel side-by-side.".

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

screenshot

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

Tải xuống các tệp mở rộng Discord Video Chat 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

                        Required for using the Discord Video Chat website.                    

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

Tên Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
URL Chính Thức https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
Mô tả Place Discord Video Channel and Text Channel side-by-side.
Kích Thước Tệp 91.08 KB
Số Lần Cài Đặt 465
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2022-01-11
Ngày Phát Hành 2020-12-21
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển dsngiem
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Discord Video Chat",
    "short_name": "Discord Video Chat",
    "version": "1.0.4",
    "description": "Place Discord Video Channel and Text Channel side-by-side.",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:4200\/*",
                "https:\/\/beehive-chat.web.app\/*"
            ],
            "js": [
                "app.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/discord.com\/*"
            ],
            "js": [
                "scripts\/discord.js"
            ],
            "css": [
                "scripts\/discord.css"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/localhost:4200\/*",
        "https:\/\/discord.com\/*",
        "https:\/\/beehive-chat.web.app\/*"
    ],
    "optional_permissions": [
        "contentSettings"
    ]
}