Abu Chrome Bridge logo

Abu Chrome Bridge

Community
PM-Shawn
Abu-Chrome-Bridge

通过 Abu Chrome 扩展操作用户现有的 Chrome 标签页、登录态和浏览器资料。仅在用户明确要求使用 Chrome、已有标签页或现有登录状态时使用。

Overview

PublisherPM-Shawn
RepositoryAbu-Cowork
Skill nameAbu-Chrome-Bridge
Stars
380
Forks
86
Bundled files
1
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by PM-Shawn on GitHub. Read the source before you install it.

Installation

Install the Abu Chrome Bridge AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/PM-Shawn/Abu-Cowork.git /tmp/Abu-Cowork
mkdir -p .claude/skills
cp -r /tmp/Abu-Cowork/builtin-skills/Abu-Chrome-Bridge .claude/skills/Abu-Chrome-Bridge
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Abu Chrome Bridge in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Abu Chrome Bridge on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Abu Chrome Bridge is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Abu-Chrome-Bridge

这个技能连接用户已经在使用的 Chrome,不代表 Abu 内置浏览器。

连接

  1. 先调用 manage_mcp_server(action: "ensure", name: "abu-browser-bridge"),让阿布检查内置连接组件。不要向用户解释 MCP、启动命令或安装包。
  2. 如果返回结果说明用户已关闭该能力或需要设置,立即调用 manage_mcp_server(action: "open_setup", name: "abu-browser-bridge"),暂停当前浏览器动作,并等待用户在引导页明确点击“连接 Chrome”。不要自行重新开启。
  3. 连接组件就绪后,调用 abu-browser-bridge__connection_status 确认 Chrome 扩展是否就绪;如果扩展未连接,同样打开“我的 Chrome”安装引导并暂停。
  4. 用户确认完成后再次检查连接;连接成功就从原任务中断处继续,不要让用户重新描述需求。

操作

  1. abu-browser-bridge__get_tabs 获取用户现有标签页。
  2. 优先选择 focusedactiveisCurrentTab 对应的标签页。
  3. 使用 snapshot 获取元素 ref 与 id,再执行点击、填写或选择。
  4. 页面明显变化后重新快照;已持有的 ref 只要元素还在页面上就依然有效,不必因为重新快照而丢弃。

表单与下拉

  • 填写fill,定位优先用快照给出的 ref,需要跨页面刷新时用 id(快照会返回 #form_item_xxx 这类 id)。
  • 下拉一律用 select,一次调用搞定:定位到下拉控件本身、把选项文字作为 value 传进去即可。不要先点开下拉,也不要自己去点选项——select 会自己打开、找到(必要时滚动长列表)、点中、关闭。原生 <select> 和 antd / Element Plus / Arco 的自定义下拉都支持。
  • 选项名写错时,select 的报错里会列出该下拉实际可选的全部选项——照着重试一次即可,不要改用脚本。
  • 快照提示被截断时,按提示用 selector 收窄到当前表单,或调大 maxChars

不要用 execute_js 绕路

execute_js 是最后手段,每次执行都会打断用户单独授权,而且拥有页面的全部权限。动手写脚本之前先确认标准工具真的做不到:读页面用 snapshot / extract_text / extract_table,等待用 wait_for(超时会说明页面当前的实际状态),选下拉用 select。工具报错时先读错误信息——它通常已经写明下一步该怎么做。

不要把 Chrome Bridge 用作普通网页任务的默认浏览器,也不要用它代替 Abu 内置浏览器。

确认操作结果,也不要用脚本

提交、保存这类操作之后要确认结果时:先 wait_for(等成功提示出现、或等 URL 变化),再 extract_text 读页面文字。不要写脚本去挂 fetch、翻 .ant-message、查 DOM——那样每查一次就打断用户一次。页面如果确实没有任何反馈,如实告诉用户"没有看到成功提示",不要反复探测。

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Abu Chrome Bridge AI skill do?

通过 Abu Chrome 扩展操作用户现有的 Chrome 标签页、登录态和浏览器资料。仅在用户明确要求使用 Chrome、已有标签页或现有登录状态时使用。

Why use Abu Chrome Bridge on TypingMind?

Because you install it once and use it with any model. Abu Chrome Bridge is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Abu Chrome Bridge in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/PM-Shawn/Abu-Cowork/tree/main/builtin-skills/Abu-Chrome-Bridge. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Abu Chrome Bridge?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Abu Chrome Bridge?

As many as you like. As long as a model supports skills, you can use Abu Chrome Bridge with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Abu Chrome Bridge AI skill free?

It is published on GitHub by PM-Shawn. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇