dopeChat

dopeChat

The dopest chat extension for FB Gaming livestreams!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.4.6",
  "name": "dopeChat",
  "description": "The dopest chat extension for FB Gaming livestreams!",
  "author": "dope",
  "homepage_url": "https://dopechat.ddns.net/",
  "icons": {
    "16": "icon64.png",
    "32": "icon64.png",
    "48": "icon64.png",
    "128": "icon64.png"
  },
  "action": {
    "default_title": "dopeChat"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "js/backgroundPage.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*.facebook.com/*videos/*"
      ],
      "js": [
        "js/contentScript.js",
        "js/emoteMenu.js"
      ],
      "css": [
        "css/content.css"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.facebook.com/*"
      ],
      "resources": [
        "css/*",
        "icon64.png"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}