Switch off context Menu completely
Code snippet
<script>const player = videojs("my_player", {license: "key"});player.nuevo({contextMenu: false})</script>Setup own branding link
Code snippet
<script>const player = videojs("my_player", {license: "key"});player.nuevo({contextUrl: 'https://www.wikipedia.com',contextText: '© Wikipedia.com',});</script>Branding link with favicon
Code snippet
<script>const player = videojs("my_player", {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>const player = videojs("my_player", {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>const player = videojs("my_player", {license: "key"});player.nuevo({ url: "https://video-url-address" })</script>