browser-annotations 1.0.5 → 1.1.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 CHANGED
@@ -22,7 +22,7 @@ Install the [Chrome extension](#chrome-extension) and use it with [pi](#pi) or [
22
22
 
23
23
  1. Install with `pnpm install -g browser-annotations`
24
24
  2. Open `chrome://extensions` and enable **Developer mode**
25
- 3. Click **Load unpacked** and select `~/browser-annotations/chrome`
25
+ 3. Click **Load unpacked** and select `~/browser-annotations/chrome-extension`
26
26
 
27
27
  **Updates:** Run `pnpm update -g browser-annotations` and reload the extension in `chrome://extensions`
28
28
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "../../../../../../@crx/manifest": {
3
- "file": "assets/crx-manifest.js-sKtwFxJ8.js",
3
+ "file": "assets/crx-manifest.js-DY7GCSOd.js",
4
4
  "name": "crx-manifest.js",
5
5
  "src": "../../../../../../@crx/manifest",
6
6
  "isEntry": true
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 3,
3
3
  "name": "Browser Annotations",
4
4
  "description": "Capture feedback from the Chrome DevTools.",
5
- "version": "1.0.5",
5
+ "version": "1.1.0",
6
6
  "icons": {
7
7
  "16": "icon.png",
8
8
  "32": "icon.png",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-annotations",
3
- "version": "1.0.5",
3
+ "version": "1.1.0",
4
4
  "description": "Annotate elements and send them to your agents right from your Chrome DevTools.",
5
5
  "homepage": "https://browser-annotations.dev",
6
6
  "license": "MIT",
@@ -5,7 +5,7 @@ import { homedir } from "node:os";
5
5
  try {
6
6
  const distDir = join(import.meta.dirname, "..", "dist");
7
7
  const targetDir = join(homedir(), "browser-annotations");
8
- const linkPath = join(targetDir, "chrome");
8
+ const linkPath = join(targetDir, "chrome-extension");
9
9
 
10
10
  await mkdir(targetDir, { recursive: true });
11
11