SellMeThisPen

SellMeThisPen

Your AI sales coach for on-call assistance, post-call feedback and role-play sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.1.27",
  "short_name": "SMTP",
  "name": "SellMeThisPen",
  "description": "Your AI sales coach for on-call assistance, post-call feedback and role-play sessions.",
  "homepage_url": "https://www.sellmethispen.ai/",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqQbiq7nZXX4U8y92+xGdLjz6w0Y8BksZNmvlbBjXcrBCXuWP41hFkJrqFs0WT5DlpySCPqh4lf0t0JD/0ZcuOuRlupuekzTJsi2b/hQvwXRDnAxAuakRK8WjokFWt19kQssZ/4F6ajMAXTpNB+X1tbe+NXme4Fp+JkwgpheWLvO3ar0ZqM+dy6JQbz6jYK3teWLEQoQzAKxGiHM+HoANc7XAC2iUwpw7Mx4PTQeXEi58+9CHFyBWbZnVfXRNAqBIA7lYdtMh+rN1daqOoXoC8n40BtdPChGcVEUoUZ88Dm12xvxndWnTVBSbc+Bd9D0pu+H4PwTb3LPCJ7w/9ThNywIDAQAB",
  "icons": {
    "16": "images/logo/smtp_16.png",
    "48": "images/logo/smtp_48.png",
    "64": "images/logo/smtp_64.png",
    "128": "images/logo/smtp_128.png",
    "192": "images/logo/smtp_192.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "system.display"
  ],
  "host_permissions": [
    "*://meet.google.com/*",
    "*://*.zoom.us/*",
    "*://onsitedev.ergeon.com/call/*",
    "*://onsite.ergeon.com/call/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "js/gmeet-content.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://dashboard.sellmethispen.ai/extension/*"
      ],
      "js": [
        "js/app-content.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://*.zoom.us/*"
      ],
      "js": [
        "js/zoom-content.bundle.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "*://onsitedev.ergeon.com/call/*",
        "*://onsite.ergeon.com/call/*"
      ],
      "js": [
        "js/call-content.bundle.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*.png",
        "*.js",
        "*.css",
        "*.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://dashboard.sellmethispen.ai/extension/*"
    ]
  },
  "background": {
    "service_worker": "js/background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_icon": "images/logo/smtp_64.png",
    "default_title": "SellMeThisPen | AI sales coach"
  }
}