Describe script access as this add-on, not a second piece of software.

This commit is contained in:
alexveley
2026-09-22 07:45:35 -04:00
parent 41c83dabac
commit c19e619b2f
5 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -5,9 +5,9 @@ const manage = document.getElementById("manage");
browser.runtime.sendMessage({ type: "status" }).then((info) => {
if (info && info.hostUp) {
statusEl.textContent = "Local script access is on.";
statusEl.textContent = "Ready for agents and scripts while Firefox is open.";
} else {
statusEl.textContent = "You can still issue secrets. Local script access needs the native host.";
statusEl.textContent = "You can issue and revoke secrets here.";
}
});