{"url_pattern":"^https?://(www\\.)?google\\.(com|com\\.hk|co\\.jp|co\\.uk|ca|com\\.au|de|fr)(/.*)?$","site_name":"google","allowed_domains":["google.com"],"tools":[{"name":"get_search_results","description":"Get the list of results from current Google search results page","inputSchema":{"type":"object","properties":{},"required":null},"handler":"() => {\n  const results = [];\n  document.querySelectorAll('#search .g, #rso .g').forEach((el) => {\n    const title = el.querySelector('h3')?.textContent;\n    const link = el.querySelector('a')?.href;\n    const snippet = el.querySelector('.VwiC3b, [data-sncf]')?.textContent;\n    if (title && link && !link.includes('google.com/search')) {\n      results.push({ index: results.length + 1, title, link, snippet });\n    }\n  });\n  return { success: true, count: results.length, results: results.slice(0, 10) };\n}"},{"name":"google_search","description":"Search on Google (navigates to results page, then use get_search_results to get results)","inputSchema":{"type":"object","properties":{"query":{"type":"string","description":"Search keywords"}},"required":["query"]},"handler":"(params) => {\n  window.location.href = 'https://www.google.com/search?q=' + encodeURIComponent(params.query);\n  return { success: true, message: 'Navigating to search results...', query: params.query };\n}"}]}