Initial Project
This commit is contained in:
180
manifest.json
Normal file
180
manifest.json
Normal file
@@ -0,0 +1,180 @@
|
||||
{
|
||||
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.17/MicrosoftTeams.schema.json",
|
||||
"id": "f2b103f1-1ab1-4e1b-8f0b-072aa3d4e19d",
|
||||
"manifestVersion": "1.17",
|
||||
"version": "1.0.0",
|
||||
"name": {
|
||||
"short": "Kabel-Konsolidierung",
|
||||
"full": "Kabel-Konsolidierung Add-in"
|
||||
},
|
||||
"description": {
|
||||
"short": "Kabeldaten konsolidieren",
|
||||
"full": "Macht aus mehreren Tabellenblättern eine Kabelliste"
|
||||
},
|
||||
"developer": {
|
||||
"name": "Toni Martin - SAT Elektrotechnik GmbH",
|
||||
"websiteUrl": "https://kabel.casademm.de",
|
||||
"privacyUrl": "https://kabel.casademm.de/privacy",
|
||||
"termsOfUseUrl": "https://kabel.casademm.de/terms"
|
||||
},
|
||||
"icons": {
|
||||
"outline": "assets/outline.png",
|
||||
"color": "assets/color.png"
|
||||
},
|
||||
"accentColor": "#230201",
|
||||
"localizationInfo": {
|
||||
"defaultLanguageTag": "en-us",
|
||||
"additionalLanguages": []
|
||||
},
|
||||
"authorization": {
|
||||
"permissions": {
|
||||
"resourceSpecific": [
|
||||
{
|
||||
"name": "Mailbox.ReadWrite.User",
|
||||
"type": "Delegated"
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"validDomains": [
|
||||
"kabel.casademm.de"
|
||||
],
|
||||
"extensions": [
|
||||
{
|
||||
"requirements": {
|
||||
"scopes": [
|
||||
"mail"
|
||||
],
|
||||
"capabilities": [
|
||||
{
|
||||
"name": "Mailbox",
|
||||
"minVersion": "1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
"runtimes": [
|
||||
{
|
||||
"requirements": {
|
||||
"capabilities": [
|
||||
{
|
||||
"name": "Mailbox",
|
||||
"minVersion": "1.3"
|
||||
}
|
||||
]
|
||||
},
|
||||
"id": "TaskPaneRuntime",
|
||||
"type": "general",
|
||||
"code": {
|
||||
"page": "https://kabel.casademm.de/taskpane.html"
|
||||
},
|
||||
"lifetime": "short",
|
||||
"actions": [
|
||||
{
|
||||
"id": "TaskPaneRuntimeShow",
|
||||
"type": "openPage",
|
||||
"pinnable": false,
|
||||
"view": "dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "CommandsRuntime",
|
||||
"type": "general",
|
||||
"code": {
|
||||
"page": "https://kabel.casademm.de/commands.html",
|
||||
"script": "https://kabel.casademm.de/commands.js"
|
||||
},
|
||||
"lifetime": "short",
|
||||
"actions": [
|
||||
{
|
||||
"id": "action",
|
||||
"type": "executeFunction"
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"ribbons": [
|
||||
{
|
||||
"contexts": [
|
||||
"mailCompose"
|
||||
],
|
||||
"tabs": [
|
||||
{
|
||||
"builtInTabId": "TabDefault",
|
||||
"groups": [
|
||||
{
|
||||
"id": "msgComposeGroup",
|
||||
"label": "Kabel-Konsolidierung",
|
||||
"icons": [
|
||||
{
|
||||
"size": 16,
|
||||
"url": "https://kabel.casademm.de/assets/icon-16.png"
|
||||
},
|
||||
{
|
||||
"size": 32,
|
||||
"url": "https://kabel.casademm.de/assets/icon-32.png"
|
||||
},
|
||||
{
|
||||
"size": 80,
|
||||
"url": "https://kabel.casademm.de/assets/icon-80.png"
|
||||
}
|
||||
],
|
||||
"controls": [
|
||||
{
|
||||
"id": "msgComposeOpenPaneButton",
|
||||
"type": "button",
|
||||
"label": "Show Task Pane",
|
||||
"icons": [
|
||||
{
|
||||
"size": 16,
|
||||
"url": "https://kabel.casademm.de/assets/icon-16.png"
|
||||
},
|
||||
{
|
||||
"size": 32,
|
||||
"url": "https://kabel.casademm.de/assets/icon-32.png"
|
||||
},
|
||||
{
|
||||
"size": 80,
|
||||
"url": "https://kabel.casademm.de/assets/icon-80.png"
|
||||
}
|
||||
],
|
||||
"supertip": {
|
||||
"title": "Show Task Pane",
|
||||
"description": "Opens a task pane."
|
||||
},
|
||||
"actionId": "TaskPaneRuntimeShow"
|
||||
},
|
||||
{
|
||||
"id": "ActionButton",
|
||||
"type": "button",
|
||||
"label": "Perform an action",
|
||||
"icons": [
|
||||
{
|
||||
"size": 16,
|
||||
"url": "https://kabel.casademm.de/assets/icon-16.png"
|
||||
},
|
||||
{
|
||||
"size": 32,
|
||||
"url": "https://kabel.casademm.de/assets/icon-32.png"
|
||||
},
|
||||
{
|
||||
"size": 80,
|
||||
"url": "https://kabel.casademm.de/assets/icon-80.png"
|
||||
}
|
||||
],
|
||||
"supertip": {
|
||||
"title": "Perform an action",
|
||||
"description": "Perform an action when clicked."
|
||||
},
|
||||
"actionId": "action"
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user