@v0idd0/tabsnap 1.0.2 → 1.0.3
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 +14 -2
- package/package.json +20 -8
package/README.md
CHANGED
|
@@ -6,14 +6,17 @@
|
|
|
6
6
|
[](https://developer.chrome.com/docs/extensions/mv3/intro/)
|
|
7
7
|
[](https://voiddo.com/)
|
|
8
8
|
|
|
9
|
-
> Capture every open tab as plain text, markdown, JSON, or a readme file.
|
|
9
|
+
> Capture every open tab as a browser-session export: plain text, markdown, JSON, or a readme file.
|
|
10
10
|
> One click in the browser. One pipe in the terminal.
|
|
11
11
|
> Free, MIT, zero telemetry.
|
|
12
12
|
|
|
13
13
|
[Browser-extension landing](https://extensions.voiddo.com/tabsnap/) ·
|
|
14
14
|
[CLI landing](https://tools.voiddo.com/tabsnap/) ·
|
|
15
15
|
[npm](https://www.npmjs.com/package/@v0idd0/tabsnap) ·
|
|
16
|
-
[Privacy](https://extensions.voiddo.com/tabsnap/privacy/)
|
|
16
|
+
[Privacy](https://extensions.voiddo.com/tabsnap/privacy/) ·
|
|
17
|
+
[Compare](https://extensions.voiddo.com/compare/tab-saver/)
|
|
18
|
+
|
|
19
|
+
If you think in tab backups, session exports, or a OneTab / Session Buddy alternative that still gives you a clean text artifact, tabsnap is the text-first path.
|
|
17
20
|
|
|
18
21
|
---
|
|
19
22
|
|
|
@@ -125,6 +128,15 @@ node test.js # run all 40 tests
|
|
|
125
128
|
npm publish --access public
|
|
126
129
|
```
|
|
127
130
|
|
|
131
|
+
## From the same studio
|
|
132
|
+
|
|
133
|
+
- **[@v0idd0/interviewprep](https://www.npmjs.com/package/@v0idd0/interviewprep)** — turn a job posting into a prep brief, then export it in browser or CLI
|
|
134
|
+
- **[@v0idd0/jsonyo](https://www.npmjs.com/package/@v0idd0/jsonyo)** — JSON swiss army knife, 18 commands, zero limits
|
|
135
|
+
- **[@v0idd0/envguard](https://www.npmjs.com/package/@v0idd0/envguard)** — stop shipping `.env` drift to staging
|
|
136
|
+
- **[@v0idd0/depcheck](https://www.npmjs.com/package/@v0idd0/depcheck)** — find unused dependencies in one command
|
|
137
|
+
- **[@v0idd0/gitstats](https://www.npmjs.com/package/@v0idd0/gitstats)** — git repo analytics, one command
|
|
138
|
+
- **[View all tools →](https://voiddo.com/tools/)**
|
|
139
|
+
|
|
128
140
|
## License
|
|
129
141
|
|
|
130
142
|
MIT — see `LICENSE`.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@v0idd0/tabsnap",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "tabsnap —
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"description": "tabsnap — browser session exporter and tab-list formatter for markdown, plain text, JSON, or a readme file. Library + CLI. Same formatters that power the tabsnap browser extension. Zero deps. Free forever from vøiddo.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"tabsnap": "./bin/tabsnap.js"
|
|
@@ -10,15 +10,22 @@
|
|
|
10
10
|
"test": "node test.js"
|
|
11
11
|
},
|
|
12
12
|
"files": [
|
|
13
|
-
"bin",
|
|
14
|
-
"src",
|
|
15
|
-
"
|
|
16
|
-
"
|
|
13
|
+
"bin/",
|
|
14
|
+
"src/",
|
|
15
|
+
"LICENSE",
|
|
16
|
+
"README.md"
|
|
17
17
|
],
|
|
18
18
|
"keywords": [
|
|
19
19
|
"tabs",
|
|
20
20
|
"tab-snapshot",
|
|
21
21
|
"tab-list",
|
|
22
|
+
"browser-session",
|
|
23
|
+
"browser-session-export",
|
|
24
|
+
"session-export",
|
|
25
|
+
"session-backup",
|
|
26
|
+
"tab-export",
|
|
27
|
+
"onetab",
|
|
28
|
+
"session-buddy",
|
|
22
29
|
"markdown",
|
|
23
30
|
"browser-extension",
|
|
24
31
|
"chrome-tabs",
|
|
@@ -52,5 +59,10 @@
|
|
|
52
59
|
},
|
|
53
60
|
"engines": {
|
|
54
61
|
"node": ">=14"
|
|
55
|
-
}
|
|
56
|
-
|
|
62
|
+
},
|
|
63
|
+
"os": [
|
|
64
|
+
"darwin",
|
|
65
|
+
"linux",
|
|
66
|
+
"win32"
|
|
67
|
+
]
|
|
68
|
+
}
|