DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

DGG Chat Everywhere là gì?

DGG Chat Everywhere là một tiện ích mở rộng Chrome được phát triển bởi Jazzy, và tính năng chính của nó là "Replaces Live Chats With DGG Chat.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng DGG Chat Everywhere

Tải xuống các tệp mở rộng DGG Chat Everywhere dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DGG Chat Everywhere DGG Chat Everywhere
ID ncbnabljhfmaedpkdgcoembdcpdbnkma
URL Chính Thức https://chromewebstore.google.com/detail/dgg-chat-everywhere/ncbnabljhfmaedpkdgcoembdcpdbnkma
Mô tả Replaces Live Chats With DGG Chat.
Kích Thước Tệp 138 KB
Số Lần Cài Đặt 2,279
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2023-07-04
Ngày Phát Hành 2022-07-20
Đánh Giá 4.83/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Jazzy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/DannyAlas/DGG-Everywhere
URL Trang Trợ Giúp https://github.com/DannyAlas/DGG-Everywhere
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}