Discord Video Chat

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

Apa itu Discord Video Chat?

Discord Video Chat adalah ekstensi Chrome yang dikembangkan oleh dsngiem, dan fitur utamanya adalah "Place Discord Video Channel and Text Channel side-by-side.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Discord Video Chat

Unduh file ekstensi Discord Video Chat dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Required for using the Discord Video Chat website.                    

Informasi Dasar Ekstensi

Nama Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
URL Resmi https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
Deskripsi Place Discord Video Channel and Text Channel side-by-side.
Ukuran File 91.08 KB
Jumlah Instalasi 465
Versi Saat Ini 1.0.4
Terakhir Diperbarui 2022-01-11
Tanggal Publikasi 2020-12-21
Penilaian 4.00/5 Total 2 Penilaian
Pengembang dsngiem
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}