INPUT_OBJECT

ExtensionWhitelistsInput

ExtensionWhitelistsInput contains whitelists for restricting extension access and behavior.

link GraphQL Schema definition

1input ExtensionWhitelistsInput {
5
2# List of broadcaster account IDs allowed to install an extension after release.
3# If this is empty or missing, all broadcasters can use this extension.
4broadcasters: [ID!]!
8
6# URLs which are permitted to be opened from the configuration dialog.
7configURLs: [String!]!
11
9# URLs which are permitted to be opened from an extension set as a panel.
10panelURLs: [String!]!
15
12# List of account IDs which should have access to a version of an extension.
13# Users in this list are ignored by the broadcaster whitelist check.
14testers: [ID!]!
16}