Vtiger Aide - Your new Personal Assistant

Vtiger Aide - Your new Personal Assistant

Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.2",
  "name": "Vtiger Aide - Your new Personal Assistant",
  "description": "Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.",
  "icons": {
    "16": "assets/images/vtiger16.png",
    "48": "assets/images/vtiger48.png",
    "128": "assets/images/vtiger128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "assets/images/vtiger16.png",
      "48": "assets/images/vtiger48.png",
      "128": "assets/images/vtiger128.png"
    },
    "default_title": "Vtiger Aide"
  },
  "background": {
    "scripts": [
      "js/libs/jquery-3.3.1.min.js",
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "js/libs/jquery-3.3.1.min.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    },
    {
      "css": [],
      "js": [
        "js/content.js"
      ],
      "matches": [
        "http://localhost/*",
        "https://*.vtiger.ws/*",
        "https://*.vtiger.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "background",
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "assets/images/*",
    "css/*",
    "js/*",
    "templates/*"
  ]
}