usrspace-browser-addon/src/manifest.json

39 lines
850 B
JSON
Raw Permalink 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-05-24 22:05:39 +02:00
"version": "0.9.2",
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",
2021-09-22 21:04:32 +02:00
"permissions": [
2022-12-25 16:45:34 +01:00
"alarms",
2022-12-25 02:56:18 +01:00
"notifications",
2023-01-19 01:33:01 +01:00
"storage"
2021-09-22 21:04:32 +02:00
],
2022-12-24 21:27:38 +01:00
"author": "Thomas Rupprecht",
"homepage_url": "https://gitea.usrspace.at/XimeX/usrspace-browser-addon",
"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": "112.0"
}
2022-12-24 21:27:38 +01:00
}
2018-12-27 10:37:31 +01:00
}