Contacts+ Social Clip

Contacts+ Social Clip

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": 2,
  "name": "Contacts+ Social Clip",
  "version": "20.7.27.2",
  "author": "Contacts+",
  "description": "Easily add contacts to your address book with a single click.",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "triforce.js",
        "triforce.js",
        "src/bundles/helper.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "background",
    "storage",
    "https://*.contactsplus.com/*"
  ],
  "homepage_url": "https://www.contactsplus.com/integrations/social-clip",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "background": {
    "page": "src/views/global.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "32": "icons/icon-96.png"
    },
    "default_title": "Add Contact to Contacts+",
    "default_popup": "src/views/popover.html"
  }
}