usrspace-browser-addon/manifest.json

36 lines
777 B
JSON
Raw Permalink Normal View History

2018-12-27 10:37:31 +01:00
{
2021-09-22 21:04:32 +02:00
"manifest_version": 2,
"name": "/usr/space",
2021-11-06 11:25:11 +01:00
"version": "0.7",
2021-09-22 21:04:32 +02:00
"description": "An Add-on for the Hacker-/Maker-Space /usr/space.",
"icons": {
2021-11-06 11:13:36 +01:00
"48": "icons/favicon.svg",
"96": "icons/favicon.svg"
2021-09-22 21:04:32 +02:00
},
"background": {
"page": "background/index.html"
},
"browser_action": {
"browser_style": true,
//"chrome_style": true,
"default_title": "/usr/space",
2021-11-06 11:13:36 +01:00
//"default_icon": "icons/favicon.svg",
2021-09-22 21:04:32 +02:00
"default_icon": {
2021-11-06 11:13:36 +01:00
"16": "icons/favicon.svg",
"32": "icons/favicon.svg"
2021-09-22 21:04:32 +02:00
},
"default_area": "navbar",
"default_popup": "popup/index.html"
},
"permissions": [
"https://www.usrspace.at/*",
"webRequest",
"notifications"
],
"author": "Thomas Rupprecht"
//"developer": {
// "name": "Thomas Rupprecht",
// "url": "https://blog.ximex.at/"
//}
2018-12-27 10:37:31 +01:00
}