Vtiger for Gmail

Vtiger for Gmail

Vtiger for Gmail TM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Vtiger for Gmail",
  "short_name": "Vtiger for Gmail",
  "description": "Vtiger for Gmail TM",
  "icons": {
    "16": "assets/images/vtiger16.png",
    "48": "assets/images/vtiger48.png",
    "128": "assets/images/vtiger128.png"
  },
  "version": "0.0.3.13",
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "js/content.js"
      ],
      "css": [],
      "run_at": "document_end"
    },
    {
      "matches": [
        "http://localhost/*",
        "https://*.vtiger.ws/*",
        "https://*.vtiger.com/*"
      ],
      "js": [
        "js/vtigercontent.js"
      ],
      "css": [],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "js/*.*",
    "templates/*.*",
    "assets/images/*.*",
    "css/*.*",
    "libs/*.*"
  ],
  "permissions": []
}