pi-chrome 0.15.31 → 0.15.32

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  All notable user-facing changes to `pi-chrome`.
4
4
 
5
+ ## 0.15.32 — 2026-05-31
6
+
7
+ - **Session tab-group naming tweak.** Per-session groups are now titled `Pi Session: <name-or-id>` (added a colon separator).
8
+
5
9
  ## 0.15.31 — 2026-05-31
6
10
 
7
11
  Per-session tab groups.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "manifest_version": 3,
3
3
  "name": "Pi Chrome Connector",
4
- "version": "0.15.31",
4
+ "version": "0.15.32",
5
5
  "description": "Lets Pi control tabs in Chrome via a local connector at 127.0.0.1.",
6
6
  "permissions": [
7
7
  "tabs",
@@ -604,7 +604,7 @@ export default function (pi: ExtensionAPI): void {
604
604
  const sm = ctx.sessionManager;
605
605
  const name = sm.getSessionName?.();
606
606
  const id = sm.getSessionId?.();
607
- return `Pi Session ${name || id || "unknown"}`;
607
+ return `Pi Session: ${name || id || "unknown"}`;
608
608
  };
609
609
 
610
610
  const updateChromeStatus = (ctx: ExtensionContext): void => {
@@ -1046,7 +1046,7 @@ Usage rules:
1046
1046
  urlIncludes: Type.Optional(Type.String({ description: "Match the target tab by URL substring for activate/close/group/ungroup." })),
1047
1047
  titleIncludes: Type.Optional(Type.String({ description: "Match the target tab by title substring for activate/close/group/ungroup." })),
1048
1048
  group: Type.Optional(Type.Boolean({ description: "action=new only: pass false to open an ungrouped tab. By default every Pi-opened tab joins this session's own tab group." })),
1049
- groupTitle: Type.Optional(Type.String({ description: "Tab group title for action=group/new. Defaults to this Pi session's group ('Pi Session <name-or-id>'). Pass an empty string on action=new to opt out of grouping." })),
1049
+ groupTitle: Type.Optional(Type.String({ description: "Tab group title for action=group/new. Defaults to this Pi session's group ('Pi Session: <name-or-id>'). Pass an empty string on action=new to opt out of grouping." })),
1050
1050
  groupColor: Type.Optional(Type.String({ description: "Tab group color for action=group/new: grey, blue, red, yellow, green, pink, purple, cyan, or orange. Defaults to blue." })),
1051
1051
  host: Type.Optional(Type.String()),
1052
1052
  port: Type.Optional(Type.Number()),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-chrome",
3
- "version": "0.15.31",
3
+ "version": "0.15.32",
4
4
  "scripts": {
5
5
  "test": "node test-suite/unit/csp-eval.test.mjs",
6
6
  "version": "node scripts/sync-manifest-version.js",