Warm Welcome

Warm Welcome

Personal client communication through video in one simple app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Warm Welcome",
  "version": "2.3.2",
  "browser_action": {
    "default_icon": "./dist/icons/logo-32.png"
  },
  "description": "Personal client communication through video in one simple app.",
  "icons": {
    "16": "./dist/icons/logo-16.png",
    "48": "./dist/icons/logo-48.png",
    "128": "./dist/icons/logo-128.png"
  },
  "background": {
    "scripts": [
      "./dist/background-bundle.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://mail.google.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "./dist/main-bundle.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://mail.google.com/*",
        "https://*.warmwelcome.com/*",
        "https://www.linkedin.com/*"
      ],
      "js": [
        "./dist/parser-bundle.js"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "./dist/gmail-bundle.js"
      ]
    },
    {
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "js": [
        "./dist/linkedin-bundle.js"
      ]
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "dist/images/*.png",
    "dist/images/*.svg",
    "dist/images/*.gif",
    "pages/recorder.html",
    "pages/gmail-options.html",
    "pages/linkedin-options.html"
  ],
  "permissions": [
    "storage",
    "activeTab",
    "tabCapture",
    "desktopCapture",
    "http://*/*",
    "https://*/*"
  ]
}