tabctl 0.6.0-alpha.7 → 0.6.0-alpha.9
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 +2 -2
- package/dist/extension/background.js +178 -3220
- package/dist/extension/lib/content.js +0 -115
- package/dist/extension/lib/screenshot.js +0 -93
- package/dist/extension/manifest.json +1 -1
- package/package.json +2 -2
- package/dist/extension/lib/archive.js +0 -444
- package/dist/extension/lib/deps.js +0 -4
- package/dist/extension/lib/groups.js +0 -529
- package/dist/extension/lib/inspect.js +0 -252
- package/dist/extension/lib/move.js +0 -369
- package/dist/extension/lib/tabs.js +0 -513
- package/dist/extension/lib/undo-handlers.js +0 -447
package/README.md
CHANGED
|
@@ -264,7 +264,7 @@ Relevant knobs: `TABCTL_SOCKET`, `TABCTL_TCP_PORT`, `TABCTL_PROFILE`, `TABCTL_DA
|
|
|
264
264
|
- Runtime command runs can auto-sync extension files when host/extension versions drift; rerun `tabctl reload` if the browser does not pick up changes immediately.
|
|
265
265
|
- For local release-like testing while developing, force runtime sync behavior with `TABCTL_AUTO_SYNC_MODE=release-like`.
|
|
266
266
|
- Disable runtime sync entirely with `TABCTL_AUTO_SYNC_MODE=off`.
|
|
267
|
-
- `tabctl ping --json` is the canonical runtime version check (`
|
|
267
|
+
- `tabctl ping --json` is the canonical runtime version check (`versionsInSync`, `hostBaseVersion`, `baseVersion`).
|
|
268
268
|
- Version metadata is intentionally health-only: regular command payloads (`open`, `list`, etc.) do not include version fields.
|
|
269
269
|
- `tabctl ping` returns connect errors (`ENOENT`, `ECONNREFUSED`, timeout): ensure extension is loaded and active, rerun `tabctl setup`, and in WSL verify `TABCTL_TCP_PORT` or `<dataDir>/tcp-port` matches a listening localhost port.
|
|
270
270
|
- `tabctl doctor --fix --json` includes per-profile connectivity diagnostics in `data.profiles[].connectivity`; if ping remains unhealthy after local repairs, follow `manualSteps`.
|
|
@@ -409,5 +409,5 @@ Notes:
|
|
|
409
409
|
- Selector `attr` supports `href-url`/`src-url` to return absolute http(s) URLs.
|
|
410
410
|
- `screenshot --out` writes per-tab folders into the target directory.
|
|
411
411
|
- `tabctl undo` accepts a positional txid, `--txid`, or `--latest`.
|
|
412
|
-
- `tabctl history --json` returns a JSON array
|
|
412
|
+
- `tabctl history --json` returns a top-level JSON array.
|
|
413
413
|
- `--format` is only supported by `report` (use `--json` elsewhere).
|