OBJECT

ExtensionWhitelists

Whitelists for restricting extension access and behavior.

link GraphQL Schema definition

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