Anomali Copilot

Anomali Copilot

Anomali Copilot augments your browsing experience by scanning the web pages you visit for known and potential cyber threats, providing critical context about them, and enabling you to research and investigate them further on Anomali ThreatStream.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Anomali Copilot",
  "version": "6.0.0",
  "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"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file:///*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "optional_permissions": [
    "activeTab"
  ],
  "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"
    }
  },
  "sidebar_action": {
    "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"
    },
    "default_title": "Anomali",
    "default_panel": "sidebar.html",
    "open_at_install": false
  },
  "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:///*"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "content_security_policy": {
    "extension_pages": "default-src 'none'; style-src 'unsafe-inline' 'self'; font-src 'self'; frame-src *; img-src 'self' data:; script-src 'self'; connect-src http://* https://*;"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "css/*",
        "fonts/*",
        "build/*",
        "content.css"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e57a991a-f69d-45f4-863c-861f10d9c5f4}",
      "strict_min_version": "109.0"
    }
  },
  "manifest_version": 3
}