SmartCloud Connect for Salesforce and Gmail

SmartCloud Connect for Salesforce and Gmail

SmartCloud Connect brings the power of Salesforce and Chatter to your mailbox.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appShortName__",
  "description": "__MSG_appDescription__",
  "version": "2206.0.0.10358",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_icon": {
      "16": "images/icon_action_16.png",
      "24": "images/icon_action_24.png",
      "32": "images/icon_action_32.png",
      "64": "images/icon_action_64.png"
    },
    "default_popup": "views/popup.html"
  },
  "icons": {
    "16": "images/icon_16.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://calendar.google.com/*",
        "https://www.google.com/calendar/*"
      ],
      "run_at": "document_start",
      "js": [
        "scripts/contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
  },
  "permissions": [
    "alarms",
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://calendar.google.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/popup.js",
        "scripts/relay.js",
        "scripts/chrome.bundle.js",
        "images/icon_128.png",
        "views/main.html"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://calendar.google.com/*"
      ]
    }
  ]
}