{
  "manifest_version": 3,
  "name": "TicketGate - Monday",
  "version": "1.0.0",
  "description": "Envoyer un item Monday vers TicketGate",
  "permissions": ["storage", "activeTab"],
  "host_permissions": [
    "https://*.monday.com/*",
    "https://ticket-gate.sitecreateur.fr/*",
    "http://localhost:3847/*",
    "http://127.0.0.1:3847/*"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "TicketGate"
  },
  "content_scripts": [
    {
      "matches": ["https://*.monday.com/*"],
      "js": ["content.js"],
      "run_at": "document_idle"
    }
  ],
  "background": {
    "service_worker": "background.js"
  }
}
