{
  "manifest_version": 3,
  "name": "Пример Расширения",
  "version": "1.0",
  "description": "Расширение для демонстрации настройки CSP.",

  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "48": "images/icon-48.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": ["*://*.example.com/*"],
      "js": ["content-script.js"]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.example.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'unsafe-inline' 'wasm-unsafe-eval' 'unsafe-eval' 'inline-speculation-rules'; object-src 'self';"
  }
}

