manifest.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json",
  3. "manifestVersion": "1.16",
  4. "version": "1.0.0",
  5. "id": "${{TEAMS_APP_ID}}",
  6. "packageName": "com.microsoft.teams.extension",
  7. "developer": {
  8. "name": "Teams App, Inc.",
  9. "websiteUrl": "https://www.example.com",
  10. "privacyUrl": "https://www.example.com/privacy",
  11. "termsOfUseUrl": "https://www.example.com/termsofuse"
  12. },
  13. "icons": {
  14. "color": "color.png",
  15. "outline": "outline.png"
  16. },
  17. "name": {
  18. "short": "share",
  19. "full": "Full name for share"
  20. },
  21. "description": {
  22. "short": "Short description of share",
  23. "full": "Full description of share"
  24. },
  25. "accentColor": "#FFFFFF",
  26. "bots": [],
  27. "composeExtensions": [],
  28. "staticTabs": [
  29. {
  30. "entityId": "index0",
  31. "name": "Personal Tab",
  32. "contentUrl": "${{TAB_ENDPOINT}}/tab",
  33. "websiteUrl": "${{TAB_ENDPOINT}}/tab",
  34. "scopes": [
  35. "personal"
  36. ]
  37. }
  38. ],
  39. "permissions": [
  40. "identity",
  41. "messageTeamMembers"
  42. ],
  43. "validDomains": [
  44. "${{TAB_DOMAIN}}"
  45. ]
  46. }