SimpleWebpageContentEditor/manifest.json
Ad5001 c374b6adc7
Minor UI changes + adding webpage to the title.
+ Dark theme support.
+ UI element to make it clearer whether the editing has been enabled.
2023-10-17 18:25:54 +02:00

53 lines
1.3 KiB
JSON

{
"description": "Simple local webpage content editing extension that allows in-browser edition and HTML export.",
"manifest_version": 3,
"name": "Simple Webpage Content Editor",
"version": "1.0",
"author": "Ad5001",
"developer": {
"name": "Ad5001",
"url": "https://ad5001.eu"
},
"browser_specific_settings": {
"gecko": {
"id": "simplewebpagecontenteditor@ad5001.eu",
"strict_min_version": "113.0"
},
"gecko_android": {
"strict_min_version": "113.0"
}
},
"homepage_url": "https://apps.ad5001.eu/simplewebpagecontenteditor/",
"background": {
"scripts": ["background.js"]
},
"action": {
"default_icon": "icons/editor.svg",
"default_title": "Simple Webpage Content Editor",
"default_popup": "popup/control.html",
"theme_icons": [{
"light": "icons/editor-photon-dark.svg",
"dark": "icons/editor-photon.svg",
"size": 16
}, {
"light": "icons/editor-photon-dark.svg",
"dark": "icons/editor-photon.svg",
"size": 32
}]
},
"icons": {
"48": "icons/editor.svg",
"96": "icons/editor.svg"
},
"permissions": [
"activeTab",
"tabs",
"menus",
"scripting"
]
}