{
  "manifest_version": 3,
  "name": "Fixtape",
  "description": "Mark UI elements, collect fixes, copy them as one structured prompt for an AI agent",
  "version": "0.1.0",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": ["storage", "activeTab"],
  "background": {
    "service_worker": "src/background.js"
  },
  "action": {
    "default_popup": "src/popup.html",
    "default_title": "Fixtape",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["src/content.js"],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "toggle-pick": {
      "suggested_key": { "default": "Alt+Shift+Q" },
      "description": "Вкл/выкл режим выбора элементов"
    }
  }
}