Google-Extended

nounalso called Google Extended robots.txt

Definition

Google-Extended is a robots.txt product token, not a separate crawler, that lets site owners stop Google from using their content to train Gemini models and to ground answers in the Gemini app, without affecting Google Search — including AI Overviews and AI Mode.

Updated 5 min read6 cited sources

On this page8 sections

Why it matters for founders and small teams

Google-Extended is the most misunderstood line in robots.txt: people add it to stay out of AI Overviews, which it doesn’t do, and don’t realize it takes them out of the Gemini app’s answers, which it does. For a small team, one wrong assumption here either leaves you in the AI feature you meant to leave or quietly costs you citations in an app with hundreds of millions of monthly users.

What does Google-Extended control?#

Google-Extended controls whether content Google crawls from your site may be used to train future Gemini models and to ground answers in the Gemini app and Vertex AI; it does not affect Google Search, AI Overviews or AI Mode, and Google says it isn’t a ranking signal.

Google’s crawler documentation calls it “a standalone product token” for managing whether content “may be used for training future generations of Gemini models that power Gemini Apps and Vertex AI API for Gemini and for grounding in Gemini Apps and Grounding with Google Search on Vertex AI.” The same page is explicit about Search: “Google-Extended does not impact a site’s inclusion in Google Search nor is it used as a ranking signal in Google Search.”

Disallow Google-Extended and…Effect
Training of future Gemini modelsOpted out
Grounding in the Gemini app (its cited sources)Opted out
Grounding with Google Search on Vertex AIOpted out
Google Search inclusion and rankingsUnaffected
AI Overviews and AI ModeUnaffected

Grounding is the part people miss. The Gemini app answers current questions by retrieving pages from Google’s index, and a page behind a Google-Extended block can’t be one of them. See grounding and the Gemini SEO guide.

Does blocking Google-Extended remove you from AI Overviews?#

Blocking Google-Extended does not remove you from AI Overviews or AI Mode, because Google’s AI features in Search are governed by Googlebot; to leave them, use Search Console’s Search generative AI setting, nosnippet or noindex.

Google’s AI features documentation explains why: “AI is built into Search and integral to how Search functions, which is why robots.txt directives for Googlebot is the control.” Blocking Googlebot would take you out of Search entirely, so the narrower switches below are the ones to use.

ControlGemini appAI Overviews & AI ModeGoogle Search
Google-Extended disallowedGrounding & training offUnaffectedUnaffected
Search Console → Search generative AI: ExcludeNot coveredRemovedUnaffected
nosnippet / max-snippetNot documentedInput removed / cappedSnippet removed / capped
noindexRemovedRemovedRemoved
Googlebot disallowedRemovedRemovedRemoved

The two AI opt-outs are mirror images. The Search Console control, live worldwide since 31 August 2026, removes a property from AI Overviews and AI Mode but not the Gemini app; Google-Extended removes you from the Gemini app but not AI Overviews. See AI Overviews and snippet controls.

Rankbox framework

The Google AI Control Map

Google gives site owners four separate switches, and each covers a different surface. Decide which surface you want to leave, then use the one switch that covers it and nothing more.

  1. 01

    Googlebot: everything

    Disallowing it removes you from Search, AI Overviews, AI Mode and Gemini grounding at once. Use: almost never.

  2. 02

    Search Console Exclude: AI in Search

    Search Console → Settings → Search generative AI removes a property from AI Overviews, AI Mode and Discover’s AI features, with regular results untouched. Use: to leave AI answers in Search without leaving Search.

  3. 03

    Snippet controls: specific passages

    nosnippet, max-snippet and data-nosnippet limit what AI Overviews and AI Mode may quote, and limit your classic snippets too. Use: to keep particular text out of answers.

  4. 04

    Google-Extended: Gemini

    Opts out of Gemini training and of grounding in the Gemini app and Vertex AI, with Search and its AI features untouched. Use: to keep content out of Gemini specifically.

How to use it: Most sites need none of the four. If you do, write down which surface you’re leaving before touching a file: the classic mistake is reaching for Google-Extended to solve an AI Overviews problem, or for the Search Console control to solve a Gemini one.

Free to use and adapt. If you cite it, link to rankbox.xyz/glossary/google-extended.

Google-Extended vs Googlebot: what's the difference?#

Google-Extended is only a robots.txt token with no user agent of its own, while Googlebot is the crawler that actually fetches your pages for Search and its AI features; Google-Extended just tells Google how content Googlebot already crawled may be used for Gemini.

  • GooglebotAllowSearch indexHonors robots.txt

    Builds the Search index behind Google Search, AI Overviews, AI Mode and Gemini grounding. Blocking it removes you from all four.

  • Google-ExtendedYour callModel trainingHonors robots.txt

    A robots.txt token governing Gemini training and grounding in the Gemini app and Vertex AI. Disallowing it costs you Gemini citations, not Search.

Google says so directly: “Google-Extended doesn’t have a separate HTTP request user agent string. Crawling is done with existing Google user agent strings; the robots.txt user-agent token is used in a control capacity.” Two practical consequences follow. You will never see Google-Extended in your server logs. And blocking it doesn’t reduce crawl load, because Googlebot keeps visiting either way — the token only changes what Google may do with what it fetched.

Should I block Google-Extended?#

Block Google-Extended only if keeping your content out of Gemini training matters more than being cited in the Gemini app, because Google ties the two together: one token opts you out of both, while Search, AI Overviews and AI Mode are unaffected either way.

The Gemini app had 950 million monthly users in the second quarter of 2026, per Alphabet, and studies find it cites only about three sources per answer, so each citation is scarce. For a business that wants to be recommended, a Google-Extended block trades those citations for a training opt-out. For a publisher whose content is the product, that trade can be worth it.

robots.txt
# Search, AI Overviews and AI Mode
User-agent: Googlebot
Allow: /
 
# Opts out of Gemini-app grounding AND Gemini training.
# Leave this out if you want to be cited by Gemini.
User-agent: Google-Extended
Disallow: /

How do I check whether Google-Extended is working?#

Google-Extended can’t be checked in server logs because it never visits — Googlebot does the crawling — so the check is reading your robots.txt the way Google does: find the group the Google-Extended token matches on every host, and confirm it allows or disallows what you intend.

  1. Open /robots.txt on every host, including www, the bare domain and each subdomain. Rules apply only to the host that serves them.
  2. Find the group that matches Google-Extended: its own group if one exists, otherwise User-agent: *. Google never combines a named group with the * group.
  3. Read the file as served, not as committed. Cloudflare’s managed robots.txt prepends rules to your file, including a disallow for Google-Extended — which opts you out of Gemini-app grounding, not just training.
  4. Check the effect where it lands. Run your key buyer questions in the Gemini app and see whether your pages appear among its sources. That’s the only visible result of the token.

Changes aren’t instant: Google generally caches robots.txt for up to 24 hours. And because the token covers only future training and grounding, it won’t pull your pages out of models trained before the change. See robots.txt for how groups are matched.

Sources

  1. 1.Google's common crawlers (Google-Extended)Google Crawling Infrastructure · developers.google.com
  2. 2.AI features and your websiteGoogle Search Central · developers.google.com
  3. 3.Search generative AI controlSearch Console Help · support.google.com
  4. 4.How Google interprets the robots.txt specificationGoogle Search Central · developers.google.com
  5. 5.Control content use for AI training with Cloudflare's managed robots.txtCloudflare · blog.cloudflare.com
  6. 6.Alphabet Q2 2026 earnings remarksAlphabet · blog.google

Know someone who’d find this useful? Send it their way.

Written by

Rankbox Team

The team behind Rankbox. We study how ChatGPT, Perplexity, Gemini, and Google AI Overviews choose their sources, and publish what we learn so you can put it to work.

See which AI answers cite you today

Enter your site to see how often ChatGPT, Perplexity, Gemini, and Google cite your brand, and exactly what to publish next.

No credit card required · Free 7-day trial