https://github.com/bigbluebutton/plugin-pick-random-user
The Pick Random User Plugin shows a modal for moderator to pick a user (mainly viewer but it could also be a moderator) randomly out of the whole list of users present in a meetings.
https://github.com/bigbluebutton/plugin-pick-random-user
Last synced: 10 months ago
JSON representation
The Pick Random User Plugin shows a modal for moderator to pick a user (mainly viewer but it could also be a moderator) randomly out of the whole list of users present in a meetings.
- Host: GitHub
- URL: https://github.com/bigbluebutton/plugin-pick-random-user
- Owner: bigbluebutton
- License: lgpl-3.0
- Created: 2024-06-10T16:44:21.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-11T19:05:34.000Z (12 months ago)
- Last Synced: 2025-07-22T00:09:37.049Z (10 months ago)
- Size: 2.19 MB
- Stars: 1
- Watchers: 5
- Forks: 9
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Pick random user
## What is it?
The Pick Random User Plugin shows a modal for moderator to pick a user (mainly viewer but it could also be a moderator) randomly out of the whole list of users present in a meetings.

## Building the Plugin
To build the plugin for production use, follow these steps:
```bash
cd $HOME/src/plugin-pick-random-user-plugin
npm ci
npm run build-bundle
```
The above command will generate the `dist` folder, containing the bundled JavaScript file named `PickRandomUserPlugin.js`. This file can be hosted on any HTTPS server along with its `manifest.json`.
If you install the Plugin separated to the manifest, remember to change the `javascriptEntrypointUrl` in the `manifest.json` to the correct endpoint.
To use the plugin in BigBlueButton, send this parameter along in create call:
```
pluginManifests=[{"url":"/path/to/manifest.json"}]
```
Or additionally, you can add this same configuration in the `.properties` file from `bbb-web` in `/usr/share/bbb-web/WEB-INF/classes/bigbluebutton.properties`
## Development mode
As for development mode (running this plugin from source), please, refer back to https://github.com/bigbluebutton/bigbluebutton-html-plugin-sdk section `Running the Plugin from Source`