Files
bookmarks-api/extension/manifest.json
T

26 lines
659 B
JSON

{
"manifest_version": 3,
"name": "Bookmarks API for Scripting and AI",
"short_name": "Bookmarks API",
"version": "0.3.0",
"description": "Issue a secret, then let local scripts and agents call an allowlisted bookmarks API.",
"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": "Bookmarks API",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}