SAP Cloud for Customer Gmail Add-in

SAP Cloud for Customer Gmail Add-in

Integration between Gmail™ and your SAP solution

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_applicationName__",
  "short_name": "__MSG_applicationShortName__",
  "description": "__MSG_applicationDescription__",
  "version": "1902.0.1",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "jquery-1.10.1.js",
    "gmail.min.js",
    "load.js",
    "frame.html",
    "frame.js"
  ],
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*.mail.google.com/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "manifest_version": 2
}