Replace Ed25519 with hashed API tokens and an in-Firefox client manager.

This commit is contained in:
alexveley
2026-09-22 07:24:35 -04:00
parent 55f7e863dc
commit 9242c01015
16 changed files with 487 additions and 339 deletions
+16
View File
@@ -0,0 +1,16 @@
"use strict";
const statusEl = document.getElementById("status");
const manage = document.getElementById("manage");
browser.runtime.sendMessage({ type: "status" }).then((info) => {
if (info && info.hostUp) {
statusEl.textContent = `Host connected on 127.0.0.1:${info.port}`;
} else {
statusEl.textContent = "Native host is not connected. Is it installed?";
}
});
manage.addEventListener("click", () => {
browser.runtime.openOptionsPage();
});