Native context pop-up menu when you right click over player is replaced by custom Nuevo simple menu with 3 basic options (play/pause, mute/unmute and fullscreen) and branding link.
You can replace Nuevo branding link with own brand.
Player Code Example
<!--Initialize the player and Nuevo plugin-->
<script>
var player = videojs('player_1');
player.nuevo({
contextUrl: 'https://www.wikipedia.org',contextText: 'The Free Ecyclopedia'
});
</script>
You can also disable right click context menu at all.
Player Code Setup
<!--Initialize the player and Nuevo plugin-->
<script>
var player = videojs('player_2'>);
player.nuevo({
contextMenu: false
});
</script>
Finally you can order to show browsers default menu
Player Code Setup
<!--Initialize the player and Nuevo plugin-->
<script>
var player = videojs('player_3');
player.nuevo({
contextMenu: "default"
});
</script>