Restructured and setting up to merge to Forgejo

This commit is contained in:
Sean 2024-12-18 17:40:53 -05:00
parent 1d973f1be1
commit 2e5e0f2d44
8 changed files with 294 additions and 0 deletions

40
extension/manifest.json Normal file
View file

@ -0,0 +1,40 @@
{
"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",
"*://mealie.seans.pro/*",
"contextMenus",
"storage",
"activeTab"
],
"commands": {
"activateClick": {
"suggested_key": {
"default": "Ctrl+Alt+M"
},
"description": "Activates 'Clicked' function"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}