DGG Chat Everywhere
Replaces Live Chats With DGG Chat.
¿Qué es DGG Chat Everywhere?
DGG Chat Everywhere es una extensión de Chrome desarrollada por Jazzy, y su función principal es "Replaces Live Chats With DGG Chat.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión DGG Chat Everywhere
Descarga archivos de extensión DGG Chat Everywhere en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Simply click the extension and use the toggle to switch between chats or use the popout button to open the Destiny.gg chat in a new window. Currently replaces: - YouTube chat - Twitch chat - Kick chat - Rumble chat View the source code, get help, and other updates here: https://github.com/DannyAlas/DGG-Everywhere This extension is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International Public License YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Información Básica de la Extensión
Nombre | DGG Chat Everywhere |
ID | ncbnabljhfmaedpkdgcoembdcpdbnkma |
URL Oficial | https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma |
Descripción | Replaces Live Chats With DGG Chat. |
Tamaño del Archivo | 138 KB |
Cantidad de Instalaciones | 2,279 |
Versión Actual | 0.2.2 |
Última Actualización | 2023-07-04 |
Fecha de Publicación | 2022-07-20 |
Calificación | 4.83/5 Total de 12 Calificaciones |
Desarrollador | Jazzy |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/DannyAlas/DGG-Everywhere |
URL de la Página de Ayuda | https://github.com/DannyAlas/DGG-Everywhere |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DGG Chat Everywhere", "description": "Replaces Live Chats With DGG Chat.", "version": "0.2.2", "manifest_version": 3, "default_locale": "en", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "src\/background.js" }, "options_page": "options.html", "content_scripts": [ { "id": "chat-injector", "matches": [ "*:\/\/*.destiny.gg\/*" ], "js": [ "src\/content.js" ], "runAt": "document_start" } ], "optional_host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.twitch.tv\/*", "*:\/\/*.kick.com\/*", "*:\/\/*.rumble.com\/*" ], "options_ui": { "page": "options.html", "open_in_tab": true }, "action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "scripting" ] } |