<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Ivan Seredkin</title>
    <description>The latest articles on DEV Community by Ivan Seredkin (@siropkin).</description>
    <link>https://dev.to/siropkin</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F164862%2F350e9f61-97e4-4b41-953f-69b52284d677.png</url>
      <title>DEV Community: Ivan Seredkin</title>
      <link>https://dev.to/siropkin</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/siropkin"/>
    <language>en</language>
    <item>
      <title>chrome-bridge: let any AI agent drive your real logged-in Chrome</title>
      <dc:creator>Ivan Seredkin</dc:creator>
      <pubDate>Sun, 06 Sep 2026 23:16:22 +0000</pubDate>
      <link>https://dev.to/siropkin/chrome-bridge-let-any-ai-agent-drive-your-real-logged-in-chrome-b5n</link>
      <guid>https://dev.to/siropkin/chrome-bridge-let-any-ai-agent-drive-your-real-logged-in-chrome-b5n</guid>
      <description>&lt;p&gt;Ask an agent to check something on a website and most tools spin up a clean browser with zero cookies. Playwright and friends drive a browser they launched, with a profile of their own. MCP browser bridges need an MCP-capable client and a configured server. Either way you start every session logged out.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/siropkin/chrome-bridge" rel="noopener noreferrer"&gt;chrome-bridge&lt;/a&gt; takes the other road: it drives the Chrome you are already logged into. A tiny unpacked extension talks over WebSocket to a local zero-dependency Node server, and any agent that can run a shell command can drive the browser:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;node cli.mjs snap localhost:8082         &lt;span class="c"&gt;# compact a11y snapshot with element refs&lt;/span&gt;
node cli.mjs click localhost:8082 @e4    &lt;span class="c"&gt;# click by ref&lt;/span&gt;
node cli.mjs fill localhost:8082 @e2 &lt;span class="s2"&gt;"hello@example.com"&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A &lt;code&gt;snap&lt;/code&gt; is the whole page as a compact text tree with refs you act on, roughly 10x cheaper on tokens than a screenshot:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;table "Hacker News new | past | comments | ask | show | jobs | submit" @e1
  link "Hacker News" @e5
  link "new" @e6
  link "submit" @e12
  link "login" @e13
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;A few things that make it pleasant to live with:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;refs survive re-snaps, so the agent re-checks with &lt;code&gt;--diff&lt;/code&gt; instead of re-reading the whole page&lt;/li&gt;
&lt;li&gt;driven tabs get a purple pill that narrates what the agent is doing right now, plus a live command feed in your terminal&lt;/li&gt;
&lt;li&gt;multiple Chrome profiles are supported, and it refuses to guess which one you meant&lt;/li&gt;
&lt;li&gt;works with Claude Code, Cursor, Qwen, GLM, Kimi, or a plain script hitting the local HTTP endpoint, no MCP setup&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Setup is one paste into your agent plus one click to load the extension (Chrome requires that click). MIT licensed, zero dependencies, Node &amp;gt;= 18.&lt;/p&gt;

&lt;p&gt;Repo and full agent manual: &lt;a href="https://github.com/siropkin/chrome-bridge" rel="noopener noreferrer"&gt;https://github.com/siropkin/chrome-bridge&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feedback welcome, especially on token cost of the snapshots against real workloads.&lt;/p&gt;

</description>
      <category>ai</category>
      <category>claudecode</category>
      <category>chrome</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
