Pitch Avatar Customer Catcher

Pitch Avatar Customer Catcher

Pitch Avatar Customer Catcher helps you create a link to a presentation and set it up without leaving Gmail, Outlook or Linkedin.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_manifest_name__",
  "description": "__MSG_manifest_description__",
  "version": "1.0.8.71",
  "icons": {
    "128": "./logo.png"
  },
  "action": {
    "default_icon": {
      "128": "./logo.png"
    },
    "default_popup": "./popup.html"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.live.com/mail/*",
        "https://www.linkedin.com/*",
        "https://app.pitchavatar.com/auth/sign-in"
      ],
      "js": [
        "./foreground.js"
      ],
      "css": [
        "./foreground.css"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "permissions": [],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://*.roi4presenter.com/*",
    "https://accounts.google.com/*",
    "https://www.linkedin.com/*",
    "https://www.facebook.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}