Claritysoft Gmail Extension

Claritysoft Gmail Extension

Gmail sync to Claritysoft CRM

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Claritysoft Gmail Extension",
  "version": "2.0.3",
  "description": "Gmail sync to Claritysoft CRM",
  "icons": {
    "16": "Resources/img/login_logo.PNG",
    "32": "Resources/img/login_logo.PNG",
    "128": "Resources/img/login_logo.PNG"
  },
  "browser_action": {
    "default_icon": "Resources/img/login_logo.PNG"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "css": [
        "Resources/css/typeahead.css",
        "Resources/css/Clarity_StyleSheet.css"
      ],
      "js": [
        "inboxsdk.js",
        "content.js",
        "jquery-2.1.js",
        "jquery.typeahead.js",
        "clarity_recipients.js"
      ],
      "matches": [
        "https://mail.google.com/*",
        "https://inbox.google.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'; frame-src 'self' https://claritysoft.com/privacy;",
  "permissions": [
    "https://mail.google.com/",
    "https://inbox.google.com/",
    "https://www.claritycrm.com/"
  ],
  "incognito": "not_allowed",
  "options_page": "HtmlPage.html",
  "web_accessible_resources": [
    "Resources/img/plus.png",
    "Resources/css/typeahead.css",
    "https://claritycrm.com/external/Clarity_StyleSheet.css"
  ]
}