dashboard-extension/manifest.json

45 lines
834 B
JSON
Raw Normal View History

{
"manifest_version": 2,
"name": "Dashboard",
"version": "1.0",
"description": "Adds a Dashboard Header before Webpage header.",
"content_scripts": [
{
"matches": ["*://*.local-it.org/*"],
"js": ["dashboard.js"],
"css": [ "css/dashboard.css" ]
}
],
"web_accessible_resources": [
"css/style.css",
"icons/Nextcloud_Logo.png",
"icons/wekan_logo.png",
"icons/goauthentik_logo.png"
],
"options_ui": {
"page": "options.html"
},
"permissions": ["storage"],
"browser_specific_settings": {
"gecko": {
"id": "addon@example.com"
}
2022-03-08 17:56:32 +01:00
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_icon": {
"19": "button/geo-19.png",
"38": "button/geo-38.png"
},
"default_title": "Holsteincloud 3.0"
}
2022-03-08 17:56:32 +01:00
}