Initial Firefox Agent Bridge: allowlisted bookmarks RPC for local scripts.

This commit is contained in:
alexveley
2026-09-22 06:24:31 -04:00
commit 6dcf068365
11 changed files with 690 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"manifest_version": 3,
"name": "Firefox Agent Bridge",
"version": "0.1.0",
"description": "Expose an allowlisted WebExtension API to local scripts and agents over native messaging.",
"browser_specific_settings": {
"gecko": {
"id": "firefox-agent-bridge@easygoingaming.com",
"strict_min_version": "115.0"
}
},
"permissions": ["bookmarks", "nativeMessaging"],
"background": {
"scripts": ["background.js"]
}
}