Glowing Chat Bot

Glowing Chat Bot

Glowing live chat bot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Glowing Chat Bot",
  "description": "Glowing live chat bot",
  "version": "0.11",
  "author": "Dharmendra Poonia <[email protected]>",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/glowing-logo.png"
  },
  "content_scripts": [
    {
      "css": [
        "content.css"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "content.js"
      ],
      "matches": [
        "https://www.glowing.io/*",
        "https://glowing.io/*",
        "https://www.marinabaysands.com/*",
        "https://www.galaxymacau.com/*",
        "https://www.mgmresorts.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "images/glowing-logo-16.png",
    "48": "images/glowing-logo-48.png",
    "128": "images/glowing-logo-128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "chatBotContent.html",
    "template.html",
    "images/*"
  ]
}