Files
bookmarks-api/extension/manifest.json
T

25 lines
631 B
JSON

{
"manifest_version": 3,
"name": "Firefox Agent Bridge",
"version": "0.2.0",
"description": "Let local scripts and agents call an allowlisted WebExtension API after you issue them a secret.",
"browser_specific_settings": {
"gecko": {
"id": "firefox-agent-bridge@easygoingaming.com",
"strict_min_version": "115.0"
}
},
"permissions": ["bookmarks", "nativeMessaging"],
"background": {
"scripts": ["background.js"]
},
"action": {
"default_title": "Firefox Agent Bridge",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}