Contacts+ Connector

Contacts+ Connector

Easily add contacts to your address book with a single click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Contacts+ Connector",
  "version": "1.3.4",
  "author": "Contacts+",
  "description": "Easily add contacts to your address book with a single click",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "triforce.js",
        "helper.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "background",
    "storage"
  ],
  "host_permissions": [
    "https://*.contactsplus.com/*"
  ],
  "homepage_url": "https://www.contactsplus.com/integrations/connector/",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "loader.js"
  },
  "action": {
    "default_icon": {},
    "default_title": "Add Contact to Contacts+",
    "default_popup": "popover.html"
  }
}