{
  "manifest_version": 3,
  "name": "Playlist Butler",
  "version": "0.2.4",
  "description": "The Private Playlist Concierge\u2014index and organize YouTube playlists locally for fast search and export.",
  "action": {
    "default_popup": "src/popup/popup.html",
    "default_title": "Playlist Butler"
  },
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://www.youtube.com/*"
  ],
  "background": {
    "service_worker": "service_worker_loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "src/content/content_bridge.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/content/page_context.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}