Contact Mapping Extension

Contact Mapping Extension

Contact Mapping Chrome extension - the ultimate relationship-building tool for busy professionals and “super-connectors” alike!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Contact Mapping Chrome extension - the ultimate relationship-building tool for busy professionals and “super-connectors” alike!",
  "version": "2.0.0",
  "manifest_version": 3,
  "name": "Contact Mapping Extension",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png",
        "popup.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "scripting",
    "clipboardRead"
  ]
}