团队会议扩展侧边栏

问题描述 投票:0回答:0

使用 Teams Toolkit 创建自定义选项卡应用程序并且它可以工作。不幸的是,该应用程序位于侧边栏中。是否可以扩展此侧边栏或将应用程序置于屏幕中央?

我尝试过共享到舞台功能,但我无法让其他用户完全控制我的屏幕,这对我的设置至关重要。谁能建议什么是正确的方法?

{
    "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json",
    "manifestVersion": "1.16",
    "version": "1.0.2",
    "id": "${{TEAMS_APP_ID}}",
    "packageName": "com.microsoft.teams.extension",
    "developer": {
        "name": "Teams App, Inc.",
        "websiteUrl": "https://www.example.com",
        "privacyUrl": "https://www.example.com/privacy",
        "termsOfUseUrl": "https://www.example.com/termsofuse"
    },
    "icons": {
        "color": "color.png",
        "outline": "outline.png"
    },
    "name": {
        "short": "DevTest",
        "full": "Full name for dev"
    },
    "description": {
        "short": "Short description of dev",
        "full": "Full description of dev"
    },
    "accentColor": "#FFFFFF",
    "bots": [],
    "composeExtensions": [],
    "staticTabs": [
        {
            "entityId": "index0",
            "name": "App Tab",
            "contentUrl": "https://MyWeb/index_01.html",
            "websiteUrl": "https://MyWeb.de",
            "scopes": [
                "groupChat"
            ],
            "context": [
                "personalTab",
                "channelTab"
            ]
        }
    ],
    "configurableTabs": [
        {
            "configurationUrl": "https://studio-b12.de/downloads/Vossen/TeamsTab.html",
            "scopes": [
                "team",
                "groupchat"
            ],
            "canUpdateConfiguration": true,
            "context": [
                "channelTab",
                "privateChatTab",
                "meetingChatTab",
                "meetingDetailsTab",
                "meetingSidePanel",
                "meetingStage"
            ]
        }
    ],
    "permissions": [
        "identity",
        "messageTeamMembers"
    ],
    "validDomains": [
        "https://MyWeb.de"
    ],
    "showLoadingIndicator": false,
}

microsoft-teams teams-toolkit
© www.soinside.com 2019 - 2024. All rights reserved.