Context Menu Options

The native context pop-up menu when you right click over a player is replaced by a custom Nuevo simple menu with three basic options (play/pause, mute/unmute, and full screen), an optional video URL to copy, and branding link. You can replace the Nuevo branding link with your own brand.

Switch off context Menu completely

Code snippet
<script>
var player = videojs();
player.nuevo({
contextMenu: false
});
</script>

Setup own branding link

Code snippet
<script>
var player = videojs();
player.nuevo({
contextUrl: 'https://www.wikipedia.com',
contextText: '© Wikipedia.com',
});
</script>

Branding link with favicon

Code snippet
<script>
var player = videojs();
player.nuevo({
contextUrl: 'https://www.wikipedia.com',
contextText: 'Wikipedia.com',
contextIcon: '//www.wikipedia.org/static/favicon/wikipedia.ico',
});
</script>

Use browser's default context menu

Code snippet
<script>
var player = videojs();
player.nuevo({
contextMenu: "default"
});
</script>

By defining url nuevo plugin's option, you will enable the Copy video URL context menu item, just like in the example above.
Code snippet
<script>
var player = videojs();
player.nuevo({ url: "https://video-url-address" })
</script>