Discord Video Chat

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

What is Discord Video Chat?

Discord Video Chat is a Chrome extension developed by dsngiem, and its main feature is "Place Discord Video Channel and Text Channel side-by-side.".

Extension Screenshots

screenshot

Download Discord Video Chat Extension CRX File

Download Discord Video Chat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Required for using the Discord Video Chat website.                    

Extension Basic Information

Name Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
Official URL https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
Description Place Discord Video Channel and Text Channel side-by-side.
File Size 91.08 KB
Installation Count 465
Current Version 1.0.4
Last Updated 2022-01-11
Publish Date 2020-12-21
Rating 4.00/5 Total 2 Ratings
Developer dsngiem
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}