Discord Video Chat
Place Discord Video Channel and Text Channel side-by-side.
Cos'è Discord Video Chat?
Discord Video Chat è un'estensione di Chrome sviluppata da dsngiem, e la sua funzione principale è "Place Discord Video Channel and Text Channel side-by-side.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Discord Video Chat
Scarica i file di estensione Discord Video Chat in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Required for using the Discord Video Chat website. Informazioni di Base sull'Estensione
| Nome | |
| ID | jjpggljlbclphcoblhpngnbbmgjgaoja |
| URL Ufficiale | https://chromewebstore.google.com/detail/discord-video-chat/jjpggljlbclphcoblhpngnbbmgjgaoja |
| Descrizione | Place Discord Video Channel and Text Channel side-by-side. |
| Dimensione del File | 91.08 KB |
| Conteggio Installazioni | 465 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2022-01-11 |
| Data di Pubblicazione | 2020-12-21 |
| Valutazione | 4.00/5 Totale 2 Valutazioni |
| Sviluppatore | dsngiem |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |