DGG Chat Everywhere

DGG Chat Everywhere

Replaces Live Chats With DGG Chat.

Merlin
Additional files are visible only to premium users

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