mealie-extension/extension/manifest.json

34 lines
No EOL
681 B
JSON

{
"manifest_version": 2,
"name": "Mealie",
"version": "1.0",
"description": "Connects with a local Mealie instance.",
"icons": {
"48": "icons/48.png"
},
"background": {
"scripts": ["background.js"]
},
"permissions": [
"webRequest",
"*://*/*",
"contextMenus",
"storage",
"activeTab"
],
"commands": {
"activateClick": {
"suggested_key": {
"default": "Ctrl+Alt+M"
},
"description": "Activates 'Clicked' function"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
}
}