Cloze Sidebar for CRM

Cloze Sidebar for CRM

See everything about your contacts and deals in one place - automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cloze Sidebar for CRM",
  "short_name": "Cloze Sidebar",
  "description": "See everything about your contacts and deals in one place - automatically",
  "version": "2019.7.1",
  "icons": {
    "16": "img/icon-16px.png",
    "48": "img/icon-48px.png",
    "128": "img/icon-128px.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "js/zepto.min.js",
      "js/async.js",
      "js/cloze-background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "img/icon-disabled-19px.png",
      "38": "img/icon-disabled-38px.png"
    },
    "default_title": "Show the Cloze context for this tab"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/cloze-sidebar.css"
      ],
      "js": [
        "js/zepto.min.js",
        "js/async.js",
        "js/date.js",
        "js/db.min.js",
        "js/jsint.min.js",
        "js/cloze-xhr.js",
        "js/cloze-select.js",
        "js/cloze-cache.js",
        "js/cloze-mapper.js",
        "js/cloze-content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "dynamic/*"
  ]
}