* [manifest-structure] - added manifest structure to template * Update README.md Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com> --------- Co-authored-by: Anton Georgiev <antobinary@users.noreply.github.com>
30 lines
789 B
JSON
30 lines
789 B
JSON
{
|
|
"requiredSdkVersion": "~0.0.59",
|
|
"name": "<plugin-name>",
|
|
"javascriptEntrypointUrl": "<plugin-name>.js",
|
|
"localesBaseUrl": "https://cdn.dominio.com/pluginabc/",
|
|
"eventPersistence": {
|
|
"isEnabled": true,
|
|
"maximumPayloadSizeInBytes": 1024,
|
|
"rateLimiting": {
|
|
"messagesAllowedPerSecond": 10,
|
|
"messagesAllowedPerMinute": 20
|
|
}
|
|
},
|
|
"dataChannels": [
|
|
{
|
|
"name": "<data-channel-name>",
|
|
"pushPermission": ["moderator"],
|
|
"replaceOrDeletePermission": ["creator", "moderator"]
|
|
}
|
|
],
|
|
"remoteDataSources": [
|
|
{
|
|
"name": "<remote-data-source-name>",
|
|
"url": "${meta_remote-data-uri}",
|
|
"fetchMode": "onMeetingCreate",
|
|
"permissions": ["moderator"]
|
|
}
|
|
]
|
|
}
|