{
  "manifest_version": 3,
  "name": "Songify - Copy to Suno",
  "version": "1.0",
  "description": "Copy webpage content and paste to Suno.com",
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://suno.com/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "zoe.png"
    }
  },
  "content_scripts": [
    {
      "matches": ["https://suno.com/create*"],
      "js": ["suno-content.js"]
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}