usrspace-browser-addon/src/manifest.json
Thomas Rupprecht 6b69d7cd6a use storage api
2022-12-25 02:56:18 +01:00

34 lines
758 B
JSON

{
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "0.8.0",
"icons": {
"48": "icons/favicon.svg",
"96": "icons/favicon.svg"
},
"background": {
"page": "background.html"
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_buttonTitle__",
"default_icon": "icons/favicon.svg",
"default_area": "navbar",
"default_popup": "popup.html"
},
"default_locale": "de",
"permissions": [
"https://www.usrspace.at/*",
"notifications",
"storage",
"webRequest"
],
"author": "Thomas Rupprecht",
"homepage_url": "https://gitea.usrspace.at/XimeX/usrspace-browser-addon",
"developer": {
"name": "Thomas Rupprecht",
"url": "https://blog.ximex.at/"
}
}