Files
bbb-plugin-test/manifest.json
Guilherme Pereira Leme 3eba8525da ref: Update template to use the new plugin manifest structure (#10)
* [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>
2024-10-29 16:12:23 -04:00

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"]
}
]
}