usrspace-browser-addon/src/manifest.json

35 lines
839 B
JSON
Raw Normal View History

2018-12-27 10:37:31 +01:00
{
2023-01-19 00:51:59 +01:00
"manifest_version": 3,
2022-12-25 01:23:15 +01:00
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
2023-09-13 21:51:09 +02:00
"version": "0.9.5",
2021-09-22 21:04:32 +02:00
"icons": {
2022-12-25 01:52:02 +01:00
"48": "icons/favicon.svg",
"96": "icons/favicon.svg"
2021-09-22 21:04:32 +02:00
},
"background": {
"type": "module",
"scripts": ["background.js"]
2021-09-22 21:04:32 +02:00
},
2023-01-19 00:51:59 +01:00
"action": {
2022-12-25 01:23:15 +01:00
"default_title": "__MSG_buttonTitle__",
2022-12-25 01:52:02 +01:00
"default_icon": "icons/favicon.svg",
2021-09-22 21:04:32 +02:00
"default_area": "navbar",
2022-12-25 01:52:02 +01:00
"default_popup": "popup.html"
2021-09-22 21:04:32 +02:00
},
2022-12-24 21:23:31 +01:00
"default_locale": "de",
2023-06-01 01:49:38 +02:00
"permissions": ["alarms", "notifications", "storage"],
2022-12-24 21:27:38 +01:00
"author": "Thomas Rupprecht",
"homepage_url": "https://git.usrspace.at/XimeX/usrspace-browser-addon",
2022-12-24 21:27:38 +01:00
"developer": {
"name": "Thomas Rupprecht",
"url": "https://blog.ximex.at/"
},
"browser_specific_settings": {
"gecko": {
2023-01-05 19:36:33 +01:00
"id": "{c9a907ad-a047-4cf6-8b5d-95097d31aa5b}",
"strict_min_version": "115.0"
}
2022-12-24 21:27:38 +01:00
}
2018-12-27 10:37:31 +01:00
}