MailMentor | Sales Copilot

MailMentor | Sales Copilot

Find and message potential leads quickly while browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MailMentor | Sales Copilot",
  "description": "Find and message potential leads quickly while browsing.",
  "version": "0.3.0.0",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "MailMentor"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://*.mailmentor.io/*",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "icons": {
    "16": "mark-192x192.png",
    "48": "mark-192x192.png",
    "128": "mark-192x192.png"
  }
}