Cirrus Insight for Gmail

Cirrus Insight for Gmail

Be free from CRM friction and wasted opportunities

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cirrus Insight for Gmail",
  "short_name": "CI",
  "version": "2024.215.60",
  "description": "Be free from CRM friction and wasted opportunities",
  "homepage_url": "https://home.cirrusinsight.com",
  "permissions": [
    "background",
    "declarativeNetRequestWithHostAccess",
    "storage"
  ],
  "background": {
    "service_worker": "js/background/sw-fbd7a05beb.js"
  },
  "host_permissions": [
    "*://*.googleusercontent.com/*",
    "https://socket.cirrusinsight.com/*",
    "https://mail.google.com/*"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules_1.json"
      }
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content/gmail-extension.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ],
      "css": [
        "css/common.style.css"
      ],
      "all_frames": false
    },
    {
      "js": [
        "js/content/calendar-extension.js"
      ],
      "matches": [
        "https://calendar.google.com/*"
      ],
      "css": [
        "css/common.style.css"
      ],
      "all_frames": false
    },
    {
      "js": [
        "js/content/start.js"
      ],
      "matches": [
        "https://calendar.google.com/*",
        "https://mail.google.com/*"
      ],
      "all_frames": false,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "start/frame.html",
        "start/frame-extension.js",
        "js/content/gmail-inject.js",
        "js/content/calendar-inject.js",
        "img/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  }
}