npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tabpilot

v0.1.1

Published

Give LLMs full control of your browser - secure, click-to-activate automation for Claude, ChatGPT, Codex, and any AI

Readme

TabPilot

npm version License: MIT

Give LLMs full control of your browser — securely, with click-to-activate permission.

Works with Claude, ChatGPT, Codex, and any AI that can run shell commands.

┌─────────────────┐     ┌─────────────────┐     ┌─────────────────┐
│  Claude / GPT   │────▶│  Relay Server   │────▶│    Extension    │
│   Codex / LLM   │◀────│   (background)  │◀────│    (Chrome)     │
└─────────────────┘     └─────────────────┘     └─────────────────┘
                                                       │
                                                       ▼
                                             ┌───────────────────┐
                                             │  Your Active Tab  │
                                             │   🟢 Click to ON  │
                                             └───────────────────┘

Features

  • Full browser control — navigate, click, type, scroll, screenshot, run JavaScript
  • Uses your login sessions — access GitHub, Gmail, Amazon without sharing credentials
  • Runs in background — relay starts automatically, works while you do other things
  • Click-to-activate security — only tabs you explicitly enable, others stay private
  • AI-optimized snapshots — pages converted to text with refs [e1], [e2] for easy targeting
  • Works with any LLM — Claude, ChatGPT, Codex, or custom AI agents

Quick Start

# 1. Install extension
git clone https://github.com/DrHB/tab-pilot
# Chrome: chrome://extensions → Developer mode → Load unpacked → select extension/

# 2. Setup
npx tabpilot setup

# 3. Activate & go
# Click extension icon on any tab (turns green)
# Ask your AI: "Search Amazon for mechanical keyboards and find the best rated"

Example Tasks

# Research
"Go to Hacker News and summarize the top 5 stories"

# Shopping (uses your login!)
"Search Amazon for protein powder, filter by 4+ stars, find the best value"

# Social Media
"Check my GitHub notifications and list unread ones"

# Data Extraction
"Get the titles and prices of the first 10 products on this page"

# Automation
"Fill out this form with my details"

Commands

# Core workflow
npx tabpilot snapshot                # Get page content with refs [e1], [e2]...
npx tabpilot click <ref>             # Click element (e.g., click e5)
npx tabpilot type <ref> <text>       # Type into element
npx tabpilot fill <ref> <value>      # Fill form field

# Navigation
npx tabpilot navigate <url>          # Go to URL
npx tabpilot scroll <dir> [amount]   # Scroll up/down
npx tabpilot press <key>             # Press key (Enter, Escape, Tab)

# Utilities
npx tabpilot tabs                    # List active tabs
npx tabpilot wait <text>             # Wait for text to appear
npx tabpilot screenshot              # Capture page (fallback for complex UIs)

Workflow: snapshot → use refs → click/typesnapshot again → repeat

Installation

1. Load Extension

git clone https://github.com/DrHB/tab-pilot
  1. Open chrome://extensions
  2. Enable Developer mode (top right)
  3. Click Load unpacked
  4. Select the extension/ folder

2. Run Setup

npx tabpilot setup

This auto-detects your extension and configures everything.

3. Activate Tabs

Click the TabPilot icon on any tab you want to control. Green = active.

Security Model

| Feature | TabPilot | Traditional Automation | |---------|--------------|----------------------| | Access | Only tabs you click to activate | Entire browser | | Sessions | Uses your cookies | Requires credentials | | Visibility | Green badge shows active tabs | Hidden/background | | Control | You choose what AI can access | Full access by default |

Your banking, email, and sensitive tabs stay completely isolated unless you explicitly activate them.

Supported Browsers

  • Google Chrome
  • Brave
  • Microsoft Edge
  • Chromium

Troubleshooting

Extension not detected?

  • Make sure Developer mode is enabled in chrome://extensions
  • Reload the extension

Commands not working?

  • Click the extension icon — must show green "ON"
  • Run npx tabpilot status to check configuration

No active tabs?

  • Activate at least one tab by clicking the extension icon

How It Works

  1. Chrome Extension — Injects into activated tabs, captures DOM snapshots
  2. Relay Server — Bridges AI ↔ Extension via Chrome Native Messaging (runs in background)
  3. CLI — Simple commands that any LLM can execute
You: "Find cheap flights to Tokyo"
 ↓
LLM → npx tabpilot navigate "google.com/flights"
    → npx tabpilot snapshot
    → npx tabpilot type e5 "Tokyo"
    → npx tabpilot click e12
    → ...

License

MIT


Keywords: browser agent, browser automation, AI browser control, Claude browser, ChatGPT browser, LLM web automation, Codex browser, puppeteer alternative, playwright alternative