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
+1 -1
View File
@@ -2,7 +2,7 @@
"manifest_version": 3,
"name": "Bookmarks API for Scripting and AI",
"short_name": "Bookmarks API",
"version": "0.4.0",
"version": "0.4.1",
"description": "An API add-on for Firefox to allow agentic and script-based management of user bookmarks.",
"browser_specific_settings": {
"gecko": {
+1 -1
View File
@@ -12,7 +12,7 @@
<ol class="process">
<li>Issue a secret for each agent or script that should be allowed to work with your bookmarks.</li>
<li>Store that secret with your secrets. This add-on keeps only a hash.</li>
<li>While Firefox is open, those tools call the local bookmarks API. A separately installed native host is what listens for those calls — this page does not need it.</li>
<li>While Firefox is open, those tools talk to this add-on to manage your bookmarks. This page is only for deciding who is allowed.</li>
</ol>
<p id="status" class="muted"></p>
</header>
+3 -3
View File
@@ -45,10 +45,10 @@ async function refresh() {
try {
const info = await browser.runtime.sendMessage({ type: "status" });
statusEl.textContent = info && info.hostUp
? "Local script access is on. Agents can call in while this browser is open."
: "Secrets work here. Install the native host if you want scripts and agents to call in.";
? "This add-on is ready for agents and scripts while Firefox is open."
: "You can issue and revoke secrets here anytime.";
} catch (err) {
statusEl.textContent = "Secrets work here. Local script access status is unavailable.";
statusEl.textContent = "You can issue and revoke secrets here anytime.";
}
}
+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.";
}
});