OBJECT
ExtensionWhitelists
Whitelists for restricting extension access and behavior.
link GraphQL Schema definition
1 type 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. 5 : [ID!]! 6 7 # URLs which are permitted to be opened from the configuration dialog. 8 : [String!]! 9 10 # URLs which are permitted to be opened from an extension set as a panel. 11 : [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. 15 : [ID!]! 16 17 }