Discord Video Chat

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

Qu'est-ce que Discord Video Chat ?

Discord Video Chat est une extension Chrome développée par dsngiem, et sa fonction principale est "Place Discord Video Channel and Text Channel side-by-side.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Discord Video Chat

Téléchargez les fichiers d'extension Discord Video Chat au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Required for using the Discord Video Chat website.                    

Informations de Base sur l'Extension

Nom Discord Video Chat Discord Video Chat
ID jjpggljlbclphcoblhpngnbbmgjgaoja
URL Officiel https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja
Description Place Discord Video Channel and Text Channel side-by-side.
Taille du Fichier 91.08 KB
Nombre d'Installations 465
Version Actuelle 1.0.4
Dernière Mise à Jour 2022-01-11
Date de Publication 2020-12-21
Évaluation 4.00/5 Total 2 Évaluations
Développeur dsngiem
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}