{"url_pattern":"^https?://(www\\.)?booking\\.com(/.*)?$","site_name":"booking","allowed_domains":null,"tools":[{"name":"search_hotels","description":"Search for hotels by destination and dates","inputSchema":{"type":"object","properties":{"destination":{"type":"string","description":"Destination city"},"checkIn":{"type":"string","description":"Check-in date (YYYY-MM-DD)"},"checkOut":{"type":"string","description":"Check-out date (YYYY-MM-DD)"},"guests":{"type":"number","description":"Number of guests"}},"required":["destination","checkIn","checkOut"]},"handler":"(params) => {\n  const searchBox = document.querySelector('[data-testid=\"destination-container\"] input');\n  if (searchBox) {\n    searchBox.value = params.destination;\n    searchBox.dispatchEvent(new Event('input', { bubbles: true }));\n  }\n  return { success: true, message: 'Search criteria filled' };\n}"}]}