DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

Τι είναι το DGG Chat Everywhere;

Το DGG Chat Everywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jazzy, και η κύρια λειτουργία του είναι "Replaces Live Chats With DGG Chat.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης DGG Chat Everywhere

Λήψη αρχείων επέκτασης DGG Chat Everywhere σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα DGG Chat Everywhere DGG Chat Everywhere
ID ncbnabljhfmaedpkdgcoembdcpdbnkma
Επίσημο URL https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma
Περιγραφή Replaces Live Chats With DGG Chat.
Μέγεθος Αρχείου 138 KB
Αριθμός Εγκαταστάσεων 2,279
Τρέχουσα Έκδοση 0.2.2
Τελευταία Ενημέρωση 2023-07-04
Ημερομηνία Δημοσίευσης 2022-07-20
Αξιολόγηση 4.83/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής Jazzy
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/DannyAlas/DGG-Everywhere
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/DannyAlas/DGG-Everywhere
Υποστηριζόμενες Γλώσσες 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"
    ]
}