Restructured and setting up to merge to Forgejo
This commit is contained in:
parent
1d973f1be1
commit
2e5e0f2d44
8 changed files with 294 additions and 0 deletions
40
extension/manifest.json
Normal file
40
extension/manifest.json
Normal 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"]
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue