EclecticIQ Threat Scout

EclecticIQ Threat Scout

Transform online information on cyber threats into AI-structured and STIX 2.1 compatible data to freely embed in your security tools

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EclecticIQ Threat Scout",
  "author": "EclecticIQ",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "Transform online information on cyber threats into AI-structured and STIX 2.1 compatible data to freely embed in your security tools",
  "icons": {
    "16": "assets/icons/icon.png",
    "24": "assets/icons/icon.png",
    "64": "assets/icons/icon.png",
    "128": "assets/icons/icon.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/background.js"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/icon.png",
      "48": "assets/icons/icon.png"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "content/*",
        "background/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  }
}