usrspace-browser-addon/src/manifest.json

42 lines
910 B
JSON
Raw Normal View History

2018-12-27 10:37:31 +01:00
{
2021-09-22 21:04:32 +02:00
"manifest_version": 2,
2022-12-25 01:23:15 +01:00
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
2023-01-05 19:15:09 +01:00
"version": "0.8.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": {
"page": "background.html",
"persistent": true
2021-09-22 21:04:32 +02:00
},
"browser_action": {
"browser_style": true,
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": [
"https://www.usrspace.at/*",
2022-12-25 16:45:34 +01:00
"alarms",
2022-12-25 02:56:18 +01:00
"notifications",
"storage",
"webRequest"
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:14:02 +01:00
"id": "usrspace@usrspace.at",
2023-01-05 14:11:22 +01:00
"strict_min_version": "79.0"
}
2022-12-24 21:27:38 +01:00
}
2018-12-27 10:37:31 +01:00
}