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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    ]
}