NetHunt CRM for Gmail

NetHunt is a powerful CRM built inside Gmail & integrated with other G Suite apps.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "NetHunt CRM: Full Gmail Integration",
  "short_name": "NetHunt CRM",
  "version": "23.17.829",
  "description": "CRM designed for sales teams and integrated with Gmail and LinkedIn.",
  "homepage_url": "https://nethunt.com/",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.nethunt.com/*",
        "https://mail.google.com/mail/*",
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "manifest.json",
    "gdPicker.html",
    "gmData.js",
    "gmEmbData.js",
    "gmAjax.js",
    "gcData.js",
    "gcAjax.js",
    "pixel.gif"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "https://*.nethunt.com/*",
    "https://*.nethunt.co/*",
    "https://*.googleusercontent.com/proxy/*",
    "https://mail.google.com/mail/*",
    "https://calendar.google.com/calendar/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{a803c89e-7d9b-42ce-9e0a-edf8aef11df5}"
    }
  }
}