Anomali Copilot

Anomali Copilot

Anomali Copilot is the cybersecurity industry's first natural language processing (NLP) based web content parser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Anomali Copilot",
  "version": "5.3.1",
  "description": "Anomali Copilot is the cybersecurity industry's first natural language processing (NLP) based web content parser.",
  "permissions": [
    "tabs",
    "storage",
    "webNavigation",
    "unlimitedStorage",
    "notifications",
    "cookies",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "optional_host_permissions": [
    "file:///*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "Anomali",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/threatlens-icon/threatlens-icon-16.png",
      "32": "images/threatlens-icon/threatlens-icon-32.png",
      "48": "images/threatlens-icon/threatlens-icon-48.png",
      "128": "images/threatlens-icon/threatlens-icon-128.png",
      "256": "images/threatlens-icon/threatlens-icon-256.png"
    }
  },
  "icons": {
    "16": "images/threatlens-icon/threatlens-icon-16.png",
    "32": "images/threatlens-icon/threatlens-icon-32.png",
    "48": "images/threatlens-icon/threatlens-icon-48.png",
    "128": "images/threatlens-icon/threatlens-icon-128.png",
    "256": "images/threatlens-icon/threatlens-icon-256.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'none'; style-src 'self' *.aptrinsic.com 'unsafe-inline' fonts.googleapis.com; font-src 'self' fonts.gstatic.com; child-src *; img-src 'self' data: *.aptrinsic.com storage.googleapis.com; script-src 'self'; connect-src *;"
  },
  "options_ui": {
    "page": "options.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*",
        "build/*",
        "content.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "minimum_chrome_version": "88",
  "manifest_version": 3
}