> Agent-readable docs index: /llms.txt. Download /docs.zip to grep all markdown files locally.

---
title: Installation
description: Install the Chrome extension, CLI, and agent skill in under a minute.
icon: lucide:download
---

## Install the extension

Install from the [Chrome Web Store](https://chromewebstore.google.com/detail/playwriter-mcp/jfeammnjpkecdekppnclgkkffahnhfhe), then click the extension icon on any tab. The icon turns **green** when connected.

The extension works with Chrome, Chromium, Brave, Arc, Edge, and any Chromium-based browser.

<Aside>
  <Note>
    Only tabs where you click the extension icon are controllable. Other tabs stay private.
  </Note>
</Aside>

## Install the CLI

```bash
npm i -g playwriter
```

Or use without installing:

```bash
npx playwriter@latest session new
```

**Requirements:** Node.js 18+.

## Install the skill

The **skill** teaches your AI agent how to use Playwriter: which selectors to use, how to read snapshots, how to avoid common mistakes, and all available utilities.

```bash
npx -y skills add remorses/playwriter
```

This works with any agent that supports skills (OpenCode, Cursor, Claude Code, etc.). The skill is the recommended way to use Playwriter with agents; it gives them comprehensive instructions so they can use the full API without trial and error.

## Quick start

```bash
playwriter session new                    # creates sandbox, outputs id (e.g. 1)
playwriter -s 1 -e 'await page.goto("https://example.com")'
playwriter -s 1 -e 'console.log(await snapshot({ page }))'
playwriter -s 1 -e 'await page.locator("aria-ref=e5").click()'
```

## Start Chrome for Testing

If you don't have Chrome running or want a clean instance with the extension pre-loaded:

```bash
playwriter browser start
```

This auto-finds **Chrome for Testing** or Chromium on your system, launches it with recording flags enabled, and loads the bundled Playwriter extension. You can also pass a specific browser binary:

```bash
playwriter browser start /path/to/chrome
```

## Verify it works

After installing the extension and CLI:

1. Open any website in Chrome
2. Click the Playwriter extension icon (turns green)
3. Run:

```bash
playwriter session new
playwriter -s 1 -e 'console.log(await page.title())'
```

If you see the page title printed, everything is working.
