Intro: Sales Research For Meetings

Intro: Sales Research For Meetings

A free calendar add-on that shows you sales research in your GCal.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Intro: Sales Research For Meetings",
  "description": "A free calendar add-on that shows you sales research in your GCal.",
  "version": "1.0.11",
  "manifest_version": 3,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ]
}