Page Summary
-
Resource configuration for Google Workspace add-ons within Google Meet requires specific components marked as Required in the manifest.
-
The Meet configuration includes
webandhomepageTriggerfields, withwebbeing a required object for defining the add-on's web properties. -
The
webconfiguration requiressidePanelUrl,supportsScreenSharing,addOnOrigins, andlogoUrlfields to define the add-on's side panel, screen sharing support, hosted origins, and logo within Meet.
The resource configuration used to define Google Workspace add-on content and behavior within Google Meet. Google Workspace add-on manifests must include all components marked as Required if they extend Meet.
Meet
The Google Workspace add-on manifest configuration for Google Meet extensions. See Extending Meet with Google Workspace add-ons for details.
| JSON representation |
|---|
{
"web": {
object (Web)
},
"homepageTrigger": {
object (HomepageTrigger)
}
} |
| Fields | |
|---|---|
web |
Required. Web configuration for the Meet Google Workspace add-on. |
homepageTrigger |
The trigger function for the add-on
homepage in the
Meet host. This overrides
|
Web
Web execution properties.
| JSON representation |
|---|
{
"sidePanelUrl": string,
"supportsScreenSharing": boolean,
"addOnOrigins": [
{
string: string,
...
}
],
"logoUrl": string,
"darkModeLogoUrl": string
} |
| Fields | |
|---|---|
sidePanelUrl |
Required. The URL for the side panel iframe. This is the entry point for your add-on app. |
supportsScreenSharing |
Required. Whether the add-on supports screen sharing. If |
addOnOrigins |
Required. An array of origins where your
add-on is hosted. Sub-origins and wildcard
subdomains are permitted. |
logoUrl |
Required. A Meet-specific URL of the logo. This logo is used throughout Meet. If omitted, the logo defaults to the common section logo. |
darkModeLogoUrl |
Optional. A dark mode specific URL of the logo. |