The Browser That Brought Its Own AI
Google Chrome has quietly introduced on-device AI capabilities powered by Gemini Nano, a multi-gigabyte language model downloaded automatically to qualifying machines without user consent. Websites and extensions can access this model through JavaScript APIs for tasks like summarization, translation, and text generation, with no permission prompts required. The model is installed silently when system requirements are met and can be probed by any website to detect hardware capabilities.
- ▪Chrome downloads the Gemini Nano AI model automatically on qualifying devices without user notification or consent.
- ▪The model enables seven on-device AI APIs for language processing, available to websites and extensions without permission prompts.
- ▪Gemini Nano requires at least 4 GB VRAM, 16 GB RAM, 22 GB free disk space, and a supported operating system to be installed.
- ▪Websites can detect if a user's device supports the AI model using LanguageModel.availability(), enabling hardware fingerprinting.
- ▪The AI feature is disabled on mobile and available on desktop, laptop, and Chromebook Plus devices under specific conditions.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3841501) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } Vivian Voss Posted on May 2 • Originally published at vivianvoss.net The Browser That Brought Its Own AI #browser #ai #privacy #awareness Not in the Brief, Episode 01 Open chrome://on-device-internals in a new tab. If your machine qualifies, you will see a multi-gigabyte language model that Chrome has downloaded onto your disk, listed with a version number and a file size. Any website you visit can call this model through an API in JavaScript. There is no permission prompt.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).