DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

什麼是DGG Chat Everywhere?

DGG Chat Everywhere是由Jazzy開發的Chrome擴展程式,該擴展的主要功能是“Replaces Live Chats With DGG Chat.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載DGG Chat Everywhere擴展crx文件

下載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
官方網址 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"
    ]
}