DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

DGG Chat Everywhere क्या है?

DGG Chat Everywhere Jazzy द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces Live Chats With DGG Chat."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DGG Chat Everywhere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}