Skip to main content

Command Palette

Search for a command to run...

The One Extra Click That Makes Chrome's Built-in Gemini Feel Less Intelligent

Nothing is broken. Nothing is slow. Yet one small interaction subtly interrupts the experience, and it highlights an important lesson about designing AI products.

Updated
3 min readView as Markdown
The One Extra Click That Makes Chrome's Built-in Gemini Feel Less Intelligent
M
Engineer. Researcher. Builder. I build things for web, experiment with AI, and interested in research.

Intelligence isn't just about the model

When we talk about AI products, we usually compare models.

Those comparisons matter.

But after using enough AI products, I've started noticing something else.

Sometimes the difference between an assistant that feels intelligent and one that feels clunky has nothing to do with the model itself.

Sometimes...

it's just one extra click.


An Observation from Chrome's built-in AI

Recently, I was trying Chrome's built-in Ask Gemini integration.

The workflow is simple.

  1. Highlight some text.

  2. Right-click.

  3. Select Ask Gemini.

Chrome opens the Gemini side panel with the selected text already attached as context.

So far, the experience feels smooth.

Naturally, I start typing my question.

Nothing happens.

Not because Gemini is loading.

Not because Chrome is slow.

The keyboard focus is still on the webpage.

I have to click inside the prompt before I can start typing.

Functionally, everything works.

But the interaction doesn't align with my instinctive expectations. This is where the story of User Experience begins.

https://youtu.be/2ZWWJ7V8-0w


Why this Feels Unintuitive

Once the Gemini panel opens, the interface communicates something important:

"I'm ready."

But the interaction says something different:

"Not yet."

That's a small mismatch between visual readiness and interaction readiness.

As users, we've developed a mental model from products like ChatGPT, Claude, Cursor, and Copilot.

Open the assistant.

Start typing.

The cursor is already waiting.

After explicitly choosing Ask Gemini, my intent is already clear.

Requiring one more click creates a tiny interruption between intention and action.


Could this be Intentional?

Probably.

There are valid reasons Chrome might avoid automatically moving keyboard focus.

For example:

  • Preserving expected browser focus behavior,

  • Avoiding unexpected keyboard capture,

  • Or maintaining consistency with other browser side panels.

Those are reasonable engineering trade-offs.

But in this specific interaction, I think the user's intent has already been established.

Clicking Ask Gemini is effectively saying:

"I'm done interacting with the webpage. I'm now interacting with Gemini."

At that point, automatically focusing the prompt would better align with the user's expectation.

Auto-focus the input when the panel opens—one less click, one smoother AI interaction.

One Click Sounds Insignificant

Individually, it is.

Most users probably won't even consciously notice it.

They'll simply click again and continue.

But these tiny interactions accumulate.

The best AI products don't just generate good answers.

They remove friction between user intent and getting that answer.

That's often what makes an assistant feel fast, natural, and surprisingly intelligent.


Final Thought

This isn't a bug.

It's not even a major usability issue.

It's a small UX observation.

But I think it's an interesting reminder that the perceived intelligence of an AI product isn't determined only by the model behind it.

Sometimes it's shaped by something much simpler:

How many unnecessary interactions exist between a user's intention and the AI's first response?

For me, this is one of those moments.

And it's exactly the kind of small product decision that can quietly make a good AI experience feel even better.


What do you think?

Would you expect the prompt to automatically receive focus after clicking Ask Gemini, or do you think Chrome's current behavior is the better trade-off?

I'd love to hear perspectives from product designers, browser engineers, accessibility specialists, and anyone who has built AI-assisted interfaces.

D
Duko tools1mo ago

The mismatch between "visual readiness" and "interaction readiness" is a sharp way to name this, and it generalizes past Gemini specifically, a lot of "this feels sluggish" complaints trace back to exactly this gap, where the UI signals done loading while some other layer (focus, hydration, a pending API call) hasn't actually caught up yet. Users don't distinguish between "the model is thinking" and "the interface isn't ready," they just experience both as the same kind of friction.

The focus-contract discussion in the comments is the more rigorous version of this observation, and worth sitting with: auto-focus without an escape path just relocates the friction instead of removing it, turning a one-click annoyance into a keyboard trap for anyone navigating without a mouse. That's the part easy to miss if you're only testing the happy path yourself, the fix that feels obviously right for one interaction mode (click, type immediately) can be actively worse for another (keyboard-only, screen reader) unless the whole cycle, open, focus, escape, restore, is treated as one contract instead of a single click removed.

A

Exactly. The readiness boundary should be tied to the control becoming focusable and operable, not merely visible. I would test the full keyboard sequence and accessibility tree together: open, announce, focus, type, submit, Escape, then restore the previous element and selection. That makes time-to-first-input useful without optimizing away accessibility. A panel that looks ready before hydration or focus is ready is effectively reporting a false state.

P

GGreat perspective on the underlying algorithms

A

Auto-focus fits the explicit Ask Gemini action, but it should come with a predictable focus contract: announce the panel to assistive technology, place focus in the prompt, and let Escape return it to the previously selected page element. A keyboard shortcut that opens and focuses the panel would make the intent even clearer than a context-menu path. The useful metric is not clicks alone but time-to-first-input, focus errors, and how often users type into the page by mistake.

M

Spot on about the focus contract, Ahmet Özel . The escape key handling is especially crucial otherwise, auto-focusing just creates a trap where the user feels stuck in the panel. Really appreciate the breakdown on metrics like time-to-first-input too!

A

Exactly—the feature should restore the user’s previous focus, not merely move it. I would test the whole cycle with keyboard-only and screen-reader flows: open, announce, type, submit, close, and resume from the original DOM target. If that state restoration fails, the single saved click becomes a navigation cost on every interaction.

Product Observations

Part 2 of 2

Product Observations is a series where I analyze real software products, not to criticize them, but to understand the engineering and UX decisions behind them. Every article starts with a real observation, explores the possible trade-offs, and proposes thoughtful improvements.

Start from the beginning

Claude’s Intelligence Isn’t Worth $20 to Me Anymore

Claude can be brilliant at coding and writing. But in 2026, being brilliant is no longer enough to win my $20.