cd /news/artificial-intelligence/build-new-features-using-built-in-ai… · home topics artificial-intelligence article
[ARTICLE · art-14393] src=developer.chrome.com pub= topic=artificial-intelligence verified=true sentiment=↑ positive

Build new features using built-in AI in Chrome

Google announced at I/O 2026 that developers can now build AI-powered features directly into web applications using Chrome's built-in AI APIs, eliminating cloud costs and keeping user data on-device. The new capabilities include automatic headline and meta description generation, image alt-text creation, content rewriting, and real-time translation, all running locally on the user's device. Chrome partnered with Build Awesome to release a blog template demonstrating these features, with companies like Drupal, Yahoo! Japan, and Trip.com already using the technology in production.

read2 min publishedMay 26, 2026

Published: May 26, 2026

This post is a write-up of the talk given at Google I/O 2026 by Thomas Steiner.

Imagine building a travel blog where the blog post editor doesn't just store the text, but where it actively supports you when writing. Meet Maya and Ashok, the creators of trAIlblazers. They use built-in AI in Chrome. By running models directly on the user's device, developers bypass expensive cloud costs and latency while keeping sensitive data local.

We've collaborated with Build Awesome (formerly known as Eleventy) to release a blog template with all the AI features listed in the talk.

Why built-in AI? #

Cost-efficient: No cloud inference cost, all computation happens on users' supporting devices.Privacy first: Sensitive data never leaves the browser.Offline functionality: Once the model is downloaded, AI features work without an internet connection.Performance: Hardware acceleration allows on-device models to rival (and sometimes beat) cloud speeds.Hybrid inference: Using polyfills and tools likeFirebase AI Logic, you can fall back to the cloud on unsupported devices (like mobile) while staying native on desktop.

AI features for modern web apps #

The Summarizer API

The trAIlblazers editor uses the Summarizer API to generate headlines and SEO-friendly meta descriptions automatically.

Example: Generate a headline

const blogPost = document.querySelector('.article-body').innerText;
const summarizer = await Summarizer.create({
  type: 'headline',
  sharedContext: 'Write headlines that make people want to read the blog post',
});

for await (const chunk of summarizer.summarizeStreaming(blogPost)) {
  headline.append(chunk);
}

The Prompt API (with structured output)

Need specific data? By using JSON Schema with the Prompt API, you can make the AI return predictable formats. The trAIlblazers team uses this for the following:

Tag Generation: Suggest categories like "Adventure" or "Beach" from a predefined list.Comment Moderation: Classify comments as "Safe" or "Harmful" before they are published.

Media accessibility

The editor automates the "hard parts" of Markdown. When you drop an image, the Prompt API (with multimodal input) analyzes the pixels to generate accessible alt-text and informative captions.

Writing and rewriting

With the Writer and

, users can expand bullet points into complete paragraphs and change the tone of a paragraph to be "more casual" or "shorter" with a single click.

Rewriter APIs### Seamless translation

The Translator API allows creators to draft content in English and instantly translate it for Spanish or Japanese readers, which native speakers can then refine.

Real-world success stories #

Many partners are already shipping these APIs in production. Notable examples include the following:

Drupal: Uses the Summarizer API for SEO tag generation within CKEditor.Yahoo! Japan: Uses the Prompt API for community comment moderation.Trip.com: Helps shoppers navigate complex flight booking options with AI overviews.

Resources from the talk #

Ready to build your own "trAIlblazers" experience? Check out these resources:

Starter template:Build Awesome starter-extended-blog(Includes all AI features mentioned in the talk.)Documentation:Built-in AI on Chrome for Developers** TypeScript support:**Installon npm.@types/dom-chromium-ai

Google I/O 2025 talk:Practical built-in AI with Gemini Nano in Chrome

── more in #artificial-intelligence 4 stories · sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/build-new-features-u…] indexed:0 read:2min 2026-05-26 ·