Webchat Autopilot for HMRC

Webchat Autopilot for HMRC

HMRC webchat without watching and waiting. Webchat Autopilot grabs your attention when an advisor is ready.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "HMRC webchat without watching and waiting. Webchat Autopilot grabs your attention when an advisor is ready.",
  "version": "1.13.0",
  "name": "Webchat Autopilot for HMRC ",
  "short_name": "Webchat Autopilot",
  "manifest_version": 2,
  "icons": {
    "16": "icon-16.png",
    "32": "icon-32.png",
    "34": "icon-34.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.webchat-autopilot.com/*"
      ],
      "all_frames": false,
      "js": [
        "outpost.bundle.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.tax.service.gov.uk/ask-hmrc/webchat/*"
      ],
      "all_frames": false,
      "js": [
        "webchat.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "logo-popup-button.png"
  },
  "content_security_policy": "default-src 'self'; style-src 'unsafe-inline'; script-src 'self'; object-src 'self'; child-src 'self'; connect-src https://webchat-autopilot.com https://www.webchat-autopilot.com;",
  "permissions": [
    "storage",
    "notifications"
  ],
  "web_accessible_resources": [
    "webchat.bundle.js",
    "button.html",
    "sidebar.html",
    "sidebar.bundle.js",
    "logo.png"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}