Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Wat is Discord Video Chat?
Discord Video Chat is een Chrome-extensie ontwikkeld door dsngiem, en de belangrijkste functie is "Place Discord Video Channel and Text Channel side-by-side.".
Extensie Screenshots
Download het CRX-bestand van de extensie Discord Video Chat
Download Discord Video Chat-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Required for using the Discord Video Chat website. Basisinformatie over de Extensie
| Naam | |
| ID | jjpggljlbclphcoblhpngnbbmgjgaoja |
| Officiële URL | https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja |
| Beschrijving | Place Discord Video Channel and Text Channel side-by-side. |
| Bestandsgrootte | 91.08 KB |
| Aantal Installaties | 465 |
| Huidige Versie | 1.0.4 |
| Laatst Bijgewerkt | 2022-01-11 |
| Publicatiedatum | 2020-12-21 |
| Beoordeling | 4.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | dsngiem |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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"
]
} | |