DGG Chat Everywhere
Replaces Live Chats With DGG Chat.
Was ist DGG Chat Everywhere?
DGG Chat Everywhere ist eine Chrome-Erweiterung, die von Jazzy entwickelt wurde, und ihr Hauptmerkmal ist "Replaces Live Chats With DGG Chat.".
Erweiterungsscreenshots
DGG Chat Everywhere-Erweiterungs-CRX-Datei herunterladen
Laden Sie DGG Chat Everywhere-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
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.
Grundlegende Informationen zur Erweiterung
Name | DGG Chat Everywhere |
ID | ncbnabljhfmaedpkdgcoembdcpdbnkma |
Offizielle URL | https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma |
Beschreibung | Replaces Live Chats With DGG Chat. |
Dateigröße | 138 KB |
Installationsanzahl | 2,279 |
Aktuelle Version | 0.2.2 |
Letztes Update | 2023-07-04 |
Veröffentlichungsdatum | 2022-07-20 |
Bewertung | 4.83/5 Insgesamt 12 Bewertungen |
Entwickler | Jazzy |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/DannyAlas/DGG-Everywhere |
Hilfeseite URL | https://github.com/DannyAlas/DGG-Everywhere |
Unterstützte Sprachen | 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" ] } |