recipe-manager/browser-extension/manifest.json

18 lines
465 B
JSON

{
"manifest_version": 3,
"name": "Recipe Manager Import",
"version": "0.1.0",
"description": "Send recipe page URLs to Recipe Manager for import.",
"permissions": ["storage", "contextMenus"],
"host_permissions": ["http://*/*", "https://*/*"],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_title": "Recipe Manager",
"default_popup": "popup.html"
},
"options_page": "options.html"
}