Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Was ist Discord Video Chat?
Discord Video Chat ist eine Chrome-Erweiterung, die von dsngiem entwickelt wurde, und ihr Hauptmerkmal ist "Place Discord Video Channel and Text Channel side-by-side.".
Erweiterungsscreenshots
Discord Video Chat-Erweiterungs-CRX-Datei herunterladen
Laden Sie Discord Video Chat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Required for using the Discord Video Chat website.
Grundlegende Informationen zur Erweiterung
Name | Discord Video Chat |
ID | jjpggljlbclphcoblhpngnbbmgjgaoja |
Offizielle URL | https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja |
Beschreibung | Place Discord Video Channel and Text Channel side-by-side. |
Dateigröße | 91.08 KB |
Installationsanzahl | 465 |
Aktuelle Version | 1.0.4 |
Letztes Update | 2022-01-11 |
Veröffentlichungsdatum | 2020-12-21 |
Bewertung | 4.00/5 Insgesamt 2 Bewertungen |
Entwickler | dsngiem |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |