Examine source code of ChatFusion

Inspect and view changes in ChatFusion source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "ChatFusion",
  "version": "1.0",
  "description": "Multi-Platform Chat Integrator",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "permissions": [
    "<all_urls>",
    "tabs",
    "storage",
    "notifications",
    "webRequest",
    "webRequestBlocking"
  ],
  "browser_action": {
    "default_icon": "icons/icon-48.png",
    "default_title": "ChatFusion",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.facebook.com/*",
        "*://*.web.whatsapp.com/*",
        "*://*.telegram.org/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{de2784d9-999e-4fcb-b5d3-d0bf9aed0010}"
    }
  }
}