Finally you must initialize thumbnails plugin along with videojs and nuevo plugin
<script>
var player = videojs("player_1");
player.nuevo({ option1: "value1", option2: "value2" })
player.thumbnails();
</script>
Same like for built-in thumbnails you can display shadow thumb over player window when you hold your mouse pressed over progressbar.
<script>
var player2 = videojs("player_2");
player2.nuevo({ shadowSlide:true })
player2.thumbnails();
</script>
To learn what are thumbnails images or thumbnails single sprite image, and to learn what VTT file structure should be, please visit VTT Thumbnails dedicated resource. If you login on Nuevodevel website you will also gain access to download bash sprite/vtt generator free script.