pawbrowse 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -17
- package/extension/background.js +1303 -169
- package/extension/manifest.json +2 -2
- package/mcp/server.mjs +15 -5
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -9,6 +9,8 @@
|
|
|
9
9
|
<p align="center"><strong>Let Claude Code drive your real, logged-in Chrome — open source, no keys, no second model.</strong></p>
|
|
10
10
|
|
|
11
11
|
<p align="center">
|
|
12
|
+
<a href="https://www.npmjs.com/package/pawbrowse"><img src="https://img.shields.io/npm/v/pawbrowse?color=cb3837&logo=npm" alt="npm"></a>
|
|
13
|
+
<a href="https://chromewebstore.google.com/detail/ppfdoledneneiaflggcfogecfnhkmloe"><img src="https://img.shields.io/badge/Chrome-Web%20Store-4285F4?logo=googlechrome&logoColor=white" alt="Chrome Web Store"></a>
|
|
12
14
|
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-green.svg" alt="MIT"></a>
|
|
13
15
|
<a href="CONTRIBUTING.md"><img src="https://img.shields.io/badge/PRs-welcome-brightgreen.svg" alt="PRs welcome"></a>
|
|
14
16
|
<a href="package.json"><img src="https://img.shields.io/badge/node-%3E%3D18-brightgreen.svg" alt="Node >=18"></a>
|
|
@@ -52,8 +54,6 @@ your browser) plus a tiny **local server** your AI client runs — both install
|
|
|
52
54
|
[](https://chromewebstore.google.com/detail/ppfdoledneneiaflggcfogecfnhkmloe)
|
|
53
55
|
|
|
54
56
|
> Live on the **[Chrome Web Store](https://chromewebstore.google.com/detail/ppfdoledneneiaflggcfogecfnhkmloe)** — one click, done.
|
|
55
|
-
> Prefer to run from source (contributors, or the very latest)? Clone this repo, open
|
|
56
|
-
> `chrome://extensions`, turn on **Developer mode**, **Load unpacked**, and pick the `extension/` folder.
|
|
57
57
|
|
|
58
58
|
### 2 — Connect your AI client (one time)
|
|
59
59
|
|
|
@@ -77,21 +77,8 @@ should see `extension_connected: true`, and the extension badge turns **green
|
|
|
77
77
|
|
|
78
78
|
> Needs **Node.js ≥ 18**. Works with Claude Code, Cursor, VS Code, or any MCP client — the one
|
|
79
79
|
> button/line just tells your client to run `npx -y pawbrowse@latest`; nothing to clone or build.
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
<summary>From source (contributors, or before the Web Store listing is live)</summary>
|
|
83
|
-
|
|
84
|
-
```bash
|
|
85
|
-
git clone https://github.com/ItaiZeilig/pawbrowse.git
|
|
86
|
-
```
|
|
87
|
-
1. **Load the extension:** `chrome://extensions` → **Developer mode** → **Load unpacked** → pick
|
|
88
|
-
the `pawbrowse/extension` folder.
|
|
89
|
-
2. **Run Claude Code from the clone.** The repo ships a project [`.mcp.json`](.mcp.json), so Claude
|
|
90
|
-
Code offers to enable `pawbrowse` (running the local `mcp/server.mjs`) automatically — just
|
|
91
|
-
approve it. No npm, no manual `claude mcp add`.
|
|
92
|
-
Prefer to register it yourself? `claude mcp add --scope user pawbrowse -- node /full/path/to/pawbrowse/mcp/server.mjs`
|
|
93
|
-
3. **Fully restart Claude Code** (not just `/mcp`), then run the status check above.
|
|
94
|
-
</details>
|
|
80
|
+
>
|
|
81
|
+
> Building from source or contributing? See **[CONTRIBUTING.md](CONTRIBUTING.md)**.
|
|
95
82
|
|
|
96
83
|
## Using it
|
|
97
84
|
|