Gmail Copilot by cloudHQ

Gmail Copilot by cloudHQ

Automatically list all emails and conversations you had with your contacts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": "script-src 'self' https://www.cloudhq.net; object-src 'self' https://www.cloudhq.net",
  "web_accessible_resources": [
    "javascripts/*",
    "icons/*",
    "*"
  ],
  "name": "Gmail Copilot by cloudHQ",
  "short_name": "Gmail Copilot by cloudHQ",
  "browser_action": {
    "default_icon": "icons/icon-128x128.png"
  },
  "icons": {
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "background": {
    "persistent": true,
    "scripts": [
      "javascripts/jquery-3.3.1.min.js",
      "javascripts/background.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "css": [
        "stylesheets/jquery.dropdown.css",
        "stylesheets/popover.css",
        "stylesheets/main_gmail_copilot.css"
      ],
      "include_globs": [],
      "js": [
        "javascripts/inboxsdk.js",
        "javascripts/main_gmail_copilot_loader.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "version": "1.0.0.13",
  "description": "Automatically list all emails and conversations you had with your contacts",
  "permissions": [
    "storage",
    "background",
    "https://www.cloudhq.net/"
  ],
  "manifest_version": 2
}