Mayday Autocomplete

Mayday Autocomplete

Mayday Autocomplete allows Intercom users to directly get Mayday's suggested answers into the answer window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Mayday Autocomplete",
  "version": "1.3.1",
  "description": "Mayday Autocomplete allows Intercom users to directly get Mayday's suggested answers into the answer window.",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://app.intercom.com/a/apps/*",
        "https://app.intercom.io/a/apps/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}