CB Insights

CB Insights

Pull CB Insights’ Data Right Into Your Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Pull CB Insights’ Data Right Into Your Browser",
  "version": "4.4.0",
  "manifest_version": 3,
  "name": "CB Insights",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_icon": "CBI_Grey.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "run_at": "document_idle",
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "CBI_Color.png",
        "CBI_Grey.png",
        "Icon_Login.png",
        "sidebar.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}