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 +1 -1
- package/dist/.vite/manifest.json +1 -1
- package/dist/manifest.json +1 -1
- package/package.json +1 -1
- package/scripts/postinstall.js +1 -1
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
|
|
package/dist/.vite/manifest.json
CHANGED
package/dist/manifest.json
CHANGED
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -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
|
|