diff --git a/manifest.firefox.json b/manifest.firefox.json index 7f8d610..25eab8a 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 2e04538..5c677f7 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 f6b4eca..4996968 100644 --- a/src/content/content.js +++ b/src/content/content.js @@ -1687,6 +1687,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 f0c02a2..1426a98 100644 --- a/src/options/options.html +++ b/src/options/options.html @@ -631,7 +631,7 @@