Gmail to Salesforce

Gmail to Salesforce

Gmail to Salesforce Chrome extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Gmail to Salesforce",
  "manifest_version": 2,
  "version": "0.9.0",
  "description": "Gmail to Salesforce Chrome extension.",
  "icons": {
    "16": "img/icon16.png",
    "64": "img/icon64.png",
    "128": "img/icon128.png"
  },
  "background": {
    "page": "background.html"
  },
  "options_ui": {
    "page": "options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "js/content_script.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:8080/*",
      "https://mail.google.com/*"
    ]
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "https://*.salesforce.com/"
  ],
  "web_accessible_resources": [
    "bower_components/*",
    "modal.html",
    "js/*",
    "css/*.css",
    "img/*"
  ]
}