Discord Video Chat

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

什麼是Discord Video Chat?

Discord Video Chat是由dsngiem開發的Chrome擴展程式,該擴展的主要功能是“Place Discord Video Channel and Text Channel side-by-side.”。

擴展截圖

screenshot

下載Discord Video Chat擴展crx文件

下載Discord Video Chat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Required for using the Discord Video Chat website.                    

擴展基本資訊

名稱 Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
官方網址 https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
簡介 Place Discord Video Channel and Text Channel side-by-side.
檔案大小 91.08 KB
安裝次數 465
目前版本 1.0.4
更新時間 2022-01-11
上架時間 2020-12-21
評分 4.00/5 共 2 次評分
開發者 dsngiem
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    ]
}