DigitalCX Chatbot Builder

DigitalCX Chatbot Builder

A chrome extension that makes it possible to preview a DigitalCX Chatbot on every webpage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DigitalCX Chatbot Builder",
  "short_name": "Chatbot Builder",
  "description": "A chrome extension that makes it possible to preview a DigitalCX Chatbot on every webpage.",
  "version": "1.3.2",
  "manifest_version": 2,
  "default_locale": "en",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16-active.png",
      "32": "images/icon-32-active.png"
    },
    "default_title": "DigitalCX Chatbot Builder"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "run_at": "document_idle",
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "38": "images/icon-38.png",
    "48": "images/icon-48.png",
    "96": "images/icon-96.png",
    "128": "images/icon-128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity",
    "http://*/*",
    "https://*/*"
  ]
}