functionality for switching contexts via buttons
This commit is contained in:
parent
31ebabd5e0
commit
0140c54363
8 changed files with 223 additions and 0 deletions
34
manifest.json
Normal file
34
manifest.json
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
|
||||
"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"
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in a new issue