Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问clear审计提醒

chrome-ai-extensionchrome ai 扩展

Agent Skill

chrome-ai-extension 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

256

周安装

11

GitHub Stars

公开资料未说明

下载量

90
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chrome-ai-extension(chrome ai 扩展)
来源仓库:https://github.com/vibecodersph/gemini-nano-chrome-extension-skill
仓库路径:skills/chrome-ai-extension
安装命令:
npx skills add https://github.com/vibecodersph/gemini-nano-chrome-extension-skill --skill chrome-ai-extension
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/vibecodersph/gemini-nano-chrome-extension-skill --skill chrome-ai-extension

简介

利用 Chrome 内置 AI 能力创建本地机器学习扩展,无需外部 API。

  • 支持语言模型、文本摘要、翻译和写作辅助等功能。
  • 基于 GitHub 安装,依赖实验性 API,版本兼容性需注意。
  • 可能触发页面脚本注入,建议审查权限与安全策略。
  • chrome-ai-extension 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Chrome AI Extension Skill

Create Chrome extensions that leverage Chrome's built-in AI capabilities for on-device machine learning without external API calls.

Chrome AI APIs Overview

Chrome provides several built-in AI APIs that run locally on-device:

  • LanguageModel API (Prompt API): General-purpose LLM for conversational AI and text generation using Gemini Nano
  • Summarization API: Specialized for text summarization
  • Translation API: Language translation
  • Writer API: Assisted writing and content generation

Note: The API is experimental and evolving. In current Chromium builds the exposed surface for extensions is the global LanguageModel object inside page contexts (content scripts, popups, etc.); the chrome.ai namespace is not wired up for service workers yet.

Quick Start - Working Example

Here's a working pattern that matches what currently ships in Canary/Dev (127+):

// content.js - injected into the page
let aiSession = null;

async function ensureSession() {
  if (!('LanguageModel' in self)) {
    throw new Error('Chrome on-device AI not available');
  }

  if (aiSession) {
    return aiSession;
  }

  aiSession = await LanguageModel.create({
    temperature: 0.7,
    topK: 3,
    systemPrompt: 'You are a helpful assistant.'
  });

  return aiSession;
}

async function askQuestion(question) {
  const session = await ensureSession();
  return session.prompt(question);
}

chrome.runtime.onMessage.addListener((message, sender, sendResponse) => {
  if (message.action === 'ask') {
    askQuestion(message.question)
      .then(response => sendResponse({ success: true, response }))
      .catch(error => sendResponse({ success: false, error: error.message }));
    return true; // async response
  }
});

Quick Start Workflow

  1. Check API Availability: Always verify API availability before use
  2. Request Capabilities: Check if the user's browser supports the features
  3. Create Session: Initialize an AI session
  4. Interact: Use the session for AI operations
  5. Handle Errors: Gracefully handle unavailable features

Extension Architecture

Manifest Configuration

Use Manifest V3 with appropriate permissions:

{
  "manifest_version": 3,
  "name": "My AI Extension",
  "version": "1.0.0",
  "permissions": ["storage"],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  }
}

Note: Request "aiLanguageModel" in permissions or the API will not appear to the extension, even on Canary/Dev builds. Add any additional permissions (e.g., activeTab, storage) your feature set requires.

File Structure

Standard Chrome extension structure:

extension/
├── manifest.json
├── background.js (service worker)
├── popup.html
├── popup.js
├── content.js (if needed)
└── styles.css

API Usage Patterns

Prompt API / LanguageModel API

The Prompt API provides conversational AI capabilities using Gemini Nano.

Current API Pattern (LanguageModel global)

IMPORTANT: In page-context scripts (content scripts, popups, option pages) the stable entry point is the global LanguageModel. The chrome.ai namespace is not exposed to service workers today.

Availability Check:

if (!('LanguageModel' in self)) {
  // API not available
}

const capabilities = await LanguageModel.capabilities?.();
// Returns: { available: "readily" | "after-download" | "no" }

Create Session with System Prompt:

const session = await LanguageModel.create({
  temperature: 0.7,
  topK: 3,
  systemPrompt: 'You are a helpful assistant...'
});

Note: Use systemPrompt (not initialPrompts or outputLanguage).

Generate Response:

// Non-streaming
const response = await session.prompt("Your prompt here");

// Streaming (if supported)
if (session.promptStreaming) {
  const stream = await session.promptStreaming("Your prompt here");
  let result = '';
  let previous = '';
  for await (const chunk of stream) {
    const fragment = chunk.startsWith(previous) ? chunk.slice(previous.length) : chunk;
    result += fragment;
    previous = chunk;
  }
}

Destroy Session:

if (session.destroy) {
  session.destroy();
}

Fallback API Pattern (window.ai / chrome.ai)

Some experimental builds briefly exposed the API under window.ai.languageModel or chrome.ai.languageModel. If you must support those variants, probe them after checking the global:

const candidates = [
  self.LanguageModel,
  window?.ai?.languageModel,
  chrome?.ai?.languageModel
].filter(Boolean);

const provider = candidates.find(p => typeof p.create === 'function');
if (!provider) {
  throw new Error('No on-device language model API found');
}

const session = await provider.create({ temperature: 0.7, topK: 3 });

Summarization API

Specialized for text summarization.

Check Availability:

const canSummarize = await window.ai?.summarizer?.capabilities();

Create Summarizer:

const summarizer = await window.ai.summarizer.create({
  type: 'tl;dr', // or 'key-points', 'teaser', 'headline'
  length: 'short' // or 'medium', 'long'
});

Summarize Text:

const summary = await summarizer.summarize(longText);

Translation API

For language translation tasks.

Check Availability:

const canTranslate = await window.ai?.translator?.capabilities();

Create Translator:

const translator = await window.ai.translator.create({
  sourceLanguage: 'en',
  targetLanguage: 'es'
});

Translate Text:

const translated = await translator.translate('Hello, world!');

Writer API

For assisted writing and content generation.

Check Availability:

const canWrite = await window.ai?.writer?.capabilities();

Create Writer:

const writer = await window.ai.writer.create({
  tone: 'formal', // or 'casual', 'neutral'
  length: 'medium'
});

Generate Content:

const content = await writer.write('Write about...');

Common Patterns

Robust JSON Parsing

AI models may return malformed JSON. Use multi-layer parsing:

function sanitizeModelJson(text) {
  let cleaned = text.trim();

  // Remove markdown code blocks
  if (cleaned.startsWith('```')) {
    cleaned = cleaned.replace(/^```(?:json)?/i, '').replace(/```$/i, '').trim();
  }

  // Extract JSON object
  const firstBrace = cleaned.indexOf('{');
  const lastBrace = cleaned.lastIndexOf('}');
  if (firstBrace !== -1 && lastBrace !== -1 && lastBrace > firstBrace) {
    cleaned = cleaned.slice(firstBrace, lastBrace + 1).trim();
  }

  return cleaned;
}

function parseModelResponse(raw) {
  const cleaned = sanitizeModelJson(raw);

  try {
    return JSON.parse(cleaned);
  } catch (error) {
    console.warn('Failed to parse model JSON', { raw, cleaned }, error);
    throw new Error('Model returned malformed JSON. Try again.');
  }
}

Reusable Prompt Helper

Handle both streaming and non-streaming sessions:

async function runPrompt(session, prompt) {
  // Try non-streaming first
  if (session.prompt) {
    return await session.prompt(prompt);
  }

  // Fall back to streaming
  if (session.promptStreaming) {
    const stream = await session.promptStreaming(prompt);
    let result = '';
    let previous = '';

    for await (const chunk of stream) {
      // Handle incremental chunks
      const fragment = chunk.startsWith(previous)
        ? chunk.slice(previous.length)
        : chunk;
      result += fragment;
      previous = chunk;
    }

    return result;
  }

  throw new Error('Prompt API shape not supported');
}

Error Handling

Always handle cases where APIs are unavailable:

async function initializeAI() {
  try {
    if (!('LanguageModel' in self)) {
      return { error: 'Chrome AI API not available in this context' };
    }

    const capabilities = typeof LanguageModel.capabilities === 'function'
      ? await LanguageModel.capabilities()
      : null;

    if (capabilities) {
      if (capabilities.available === 'no') {
        return { error: 'AI not available on this device' };
      }

      if (capabilities.available === 'after-download') {
        return { error: 'AI model needs to be downloaded first. Check chrome://components' };
      }
    }

    const session = await LanguageModel.create({
      temperature: 0.7,
      topK: 3,
      systemPrompt: 'You are a helpful assistant.'
    });

    return { session };
  } catch (error) {
    return { error: error.message };
  }
}

Background Script Communication

Service workers currently do not get the LanguageModel API. If you need background coordination, have the background script forward requests to a page-context script (content script, popup, or options page) that actually calls LanguageModel.create().

Content Script Integration

Interact with page content using content scripts:

// Get selected text from page
const selectedText = window.getSelection().toString();

// Send to background for AI processing
chrome.runtime.sendMessage({
  action: 'summarize',
  text: selectedText
});

Best Practices

  1. Always check availability before attempting to use AI features
  2. Handle gracefully when features are unavailable
  3. Destroy sessions when done to free resources
  4. Use streaming for long responses to improve UX
  5. Cache sessions when making multiple requests with same config
  6. Provide fallbacks for browsers without AI support
  7. Monitor token limits - sessions have context limits
  8. Run AI calls in page contexts – service workers currently lack the API surface
  9. Test across Chrome versions - AI features are experimental

Debugging

Enable Chrome Flags

  1. Navigate to chrome://flags
  2. Enable: #prompt-api-for-gemini-nano
  3. Enable: #optimization-guide-on-device-modelEnabled BypassPerfRequirement
  4. Restart Chrome completely

Download Gemini Nano Model

  • Visit chrome://components
  • Look for "Optimization Guide On Device Model"
  • Click "Check for update"
  • Wait for download (~1.7GB)
  • Status should show "Up to date"

Verify API Availability

Open DevTools Console (F12) on any page:

// Check capabilities
await LanguageModel.capabilities?.()
// Should return: { available: "readily" }

// If "after-download", wait a few minutes after download completes

Requirements

  • Chrome Canary or Dev channel (version 127+)
  • ~1.7GB disk space for Gemini Nano model
  • Supported hardware (most modern systems)

Common Use Cases

  • Text summarization for articles
  • Translation of web content
  • Writing assistance and suggestions
  • Conversational chatbots
  • Content generation
  • Text analysis and insights

Reference Files

For detailed examples and patterns:

  • references/battle-tested-patterns.md: Production-proven patterns from real Chrome AI extensions
  • references/api-examples.md: Complete working examples for each API
  • references/extension-patterns.md: Common extension architecture patterns
  • assets/template/: Basic extension template to start from

Limitations

  • Chrome AI is experimental and API surface may change
  • Requires Chrome Canary or Dev channel (version 127+)
  • Model must be downloaded (~1.7GB - happens automatically)
  • Rate limits and context length restrictions apply
  • Not all devices support all features
  • Currently supports English, Spanish, and Japanese output
  • Quality may vary from cloud-based models
  • JSON responses may require robust parsing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

30.44%
按下载量换算27

OpenCode

22.65%
按下载量换算20

Codex

17.65%
按下载量换算16

Antigravity

12.06%
按下载量换算11

Gemini CLI

7.19%
按下载量换算6

windsurf

3.24%
按下载量换算3

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills