From e9faf1df8e8a04baec7e21fbe32d582ec35b7c27 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 29 Mar 2026 17:10:18 +0000 Subject: [PATCH] debug: add reveal pairs logging to diagnose empty pairs issue, bump 0.9.13 https://claude.ai/code/session_01KF4i7Ra7zCEDskxDBaNtcT --- manifest.firefox.json | 2 +- manifest.json | 2 +- package.json | 2 +- src/content/content.js | 2 ++ src/options/options.html | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/manifest.firefox.json b/manifest.firefox.json index cf0c15e..d0a72a5 100644 --- a/manifest.firefox.json +++ b/manifest.firefox.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Silent Send", - "version": "0.9.12", + "version": "0.9.13", "description": "Intercepts personal info and substitutes it with user-defined replacements before sending to AI services.", "browser_specific_settings": { "gecko": { diff --git a/manifest.json b/manifest.json index a91a41e..d14c1c8 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 3, "name": "Silent Send", - "version": "0.9.12", + "version": "0.9.13", "description": "Intercepts personal info and substitutes it with user-defined replacements before sending to AI services.", "permissions": [ "storage", diff --git a/package.json b/package.json index d84d3d5..c0bf710 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "silent-send", - "version": "0.9.12", + "version": "0.9.13", "private": true, "license": "MIT", "description": "Browser extension that substitutes personal data before sending to AI services", diff --git a/src/content/content.js b/src/content/content.js index fca51b9..ba3fab2 100644 --- a/src/content/content.js +++ b/src/content/content.js @@ -1607,6 +1607,8 @@ // Reveal ALL text on the page + apply highlights function revealAllResponses() { + const pairs = getRevealPairs(); + console.log('[Silent Send] revealAllResponses — pairs:', pairs.length, pairs.map(p => `"${p.from}" → "${p.to}"`)); revealInElement(document.body); highlightMatches(document.body); } diff --git a/src/options/options.html b/src/options/options.html index 1e85df9..cd0ed47 100644 --- a/src/options/options.html +++ b/src/options/options.html @@ -629,7 +629,7 @@