{
  "manifest_version": 3,
  "name": "Real Agent LinkedIn Ingest",
  "version": "0.1.0",
  "description": "Add an Add-to-Real Agent pill to LinkedIn profiles and DM threads. One click captures the page and posts to your Real Agent admin.",
  "permissions": ["storage", "activeTab"],
  "host_permissions": ["https://www.linkedin.com/*"],
  "background": {
    "service_worker": "background/sw.js"
  },
  "content_scripts": [
    {
      "matches": ["https://www.linkedin.com/in/*"],
      "js": ["content/extractors.js", "content/profile.js"],
      "css": ["assets/pill.css"],
      "run_at": "document_idle"
    },
    {
      "matches": ["https://www.linkedin.com/messaging/thread/*"],
      "js": ["content/extractors.js", "content/thread.js"],
      "css": ["assets/pill.css"],
      "run_at": "document_idle"
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_title": "Real Agent LinkedIn Ingest — open options"
  }
}
