Discord Video Chat

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

Hvad er Discord Video Chat?

Discord Video Chat er en Chrome-udvidelse udviklet af dsngiem, og dens hovedfunktion er "Place Discord Video Channel and Text Channel side-by-side.".

Udvidelsesskærmbilleder

screenshot

Download Discord Video Chat-udvidelses-CRX-fil

Download Discord Video Chat-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Required for using the Discord Video Chat website.                    

Grundlæggende oplysninger om udvidelsen

Navn Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
Officiel URL https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
Beskrivelse Place Discord Video Channel and Text Channel side-by-side.
Filstørrelse 91.08 KB
Antal Installationer 465
Nuværende Version 1.0.4
Senest Opdateret 2022-01-11
Udgivelsesdato 2020-12-21
Bedømmelse 4.00/5 Samlet 2 Bedømmelser
Udvikler dsngiem
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    ]
}