usrspace-browser-addon/src/manifest.json

33 lines
745 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__",
2022-12-24 21:48:48 +01:00
"version": "0.8.0",
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": {
2022-12-25 01:52:02 +01:00
"page": "background.html"
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/*",
"webRequest",
"notifications"
],
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/"
}
2018-12-27 10:37:31 +01:00
}