Step 1: script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
Step 2:
$(document).ready(function(){
$('img').each(function() {
$(this).attr('src', $(this).attr('src').replace('thumbs', 'images'));
console.log('Latest image link ' + $(this).attr('src'));
});
});