GoodLead: HubSpot Lead Generation Tool

GoodLead: HubSpot Lead Generation Tool

GoodLead is a Chrome extension that allows you to add leads to your HubSpot CRM while prospecting with a quick click of a button.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GoodLead: HubSpot Lead Generation Tool",
  "description": "GoodLead is a Chrome extension that allows you to add leads to your HubSpot CRM while prospecting with a quick click of a button.",
  "manifest_version": 3,
  "version": "0.0.0.1",
  "background": {
    "service_worker": "service-worker.js"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "images/logo_icon.png",
    "48": "images/logo_icon.png",
    "128": "images/logo_icon.png"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "include/js/jquery-3.5.1.min.js",
        "include/js/toastr.min.js",
        "content/js/content.js"
      ],
      "css": [
        "include/css/toastr.min.css",
        "content/css/content.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "popup/popup.html"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}