DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

Qu'est-ce que DGG Chat Everywhere ?

DGG Chat Everywhere est une extension Chrome développée par Jazzy, et sa fonction principale est "Replaces Live Chats With DGG Chat.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension DGG Chat Everywhere

Téléchargez les fichiers d'extension DGG Chat Everywhere au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom DGG Chat Everywhere DGG Chat Everywhere
ID ncbnabljhfmaedpkdgcoembdcpdbnkma
URL Officiel https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma
Description Replaces Live Chats With DGG Chat.
Taille du Fichier 138 KB
Nombre d'Installations 2,279
Version Actuelle 0.2.2
Dernière Mise à Jour 2023-07-04
Date de Publication 2022-07-20
Évaluation 4.83/5 Total 12 Évaluations
Développeur Jazzy
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/DannyAlas/DGG-Everywhere
URL de la Page d'Aide https://github.com/DannyAlas/DGG-Everywhere
Langues Prises en Charge 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"
    ]
}