LiveAgent Web Contact Cards

LiveAgent Web Contact Cards

Hover over embedded emails and phone numbers on the web to view LiveAgent's pop-up contact cards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LiveAgent Web Contact Cards",
  "version": "0.0.18",
  "description": "Hover over embedded emails and phone numbers on the web to view LiveAgent's pop-up contact cards.",
  "icons": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "extension.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "css": "main.css"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "background": {
    "scripts": [
      "bg_page.js"
    ],
    "persistent": false
  }
}