Contact Center

Contact Center

Contact Center's Chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.706.1",
  "manifest_version": 2,
  "name": "Contact Center",
  "description": "Contact Center's Chrome extension",
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Contact Center Chrome",
    "default_icon": {
      "16": "static/icons/production/16/unlogged.png",
      "32": "static/icons/production/32/unlogged.png",
      "48": "static/icons/production/48/unlogged.png",
      "128": "static/icons/production/128/unlogged.png"
    }
  },
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "static/js/inject.js",
        "static/js/vendors.js"
      ],
      "css": [
        "static/css/inject.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "tabs",
    "<all_urls>",
    "storage",
    "cookies",
    "contextMenus"
  ],
  "icons": {
    "16": "static/icons/production/16/enabled.png",
    "32": "static/icons/production/32/enabled.png",
    "48": "static/icons/production/48/enabled.png",
    "128": "static/icons/production/128/enabled.png"
  },
  "web_accessible_resources": [
    "static/images/logo.svg",
    "static/images/extension-image.png"
  ],
  "content_security_policy": "script-src 'self' https://*.segment.com/ ; object-src 'self'"
}