Files
SysTray-X/webext/manifest.json
2020-04-15 23:18:02 +02:00

33 lines
652 B
JSON

{
"manifest_version": 2,
"name": "__MSG_extension_name__",
"description": "__MSG_extension_description__",
"version": "0.1.4",
"author": "Maxime Rijnders",
"homepage_url": "https://github.com/Ximi1970/systray-x",
"applications": {
"gecko": {
"id": "systray-x@Ximi1970",
"strict_min_version": "68.0",
"strict_max_version": "71.*"
}
},
"icons": {
"48": "icons/message.svg"
},
"default_locale": "en-US",
"permissions": ["accountsRead", "messagesRead", "storage", "nativeMessaging", "tabs"],
"background": {
"page": "background.html"
},
"options_ui": {
"page": "options.html"
}
}