Hide images from WhatsApp Web interface

Code:

var thumbs = document.getElementsByClassName("image-thumb");
var l = thumbs.length;for (var i = 0; i < l; i++) { thumbs[0].parentNode.removeChild(thumbs[0]);}

All the thumbnails will be removed and your privacy will be preserved!