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 a branding link. You can replace the Nuevo branding link with your own brand.

Switch off context Menu completely

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

Setup own branding link

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

Branding link with favicon

Code snippet
<script>
var player = videojs("myplayer", {license: "key"});
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("myplayer", {license: "key"});
player.nuevo({
contextMenu: "default"
});
</script>

When the Nuevo plugin option url is defined, the context menu item Copy video URL will be enabled, just like in the example above.
Code snippet
<script>
var player = videojs("myplayer", {license: "key"});
player.nuevo({ url: "https://video-url-address" })
</script>