Парсинг сайта с Google Spreadsheets

есть страница сайта https://www.majestictiles.com/en/porcelain-tiles/1/200/

Помогите, плиз. Как спарсить ссылки картинок, которые находятся внутри карточки товара
Нахожу допустим ссылку на товар, перехожу на нее, и там уже беру все картинки

   function getContent() {
getPageContent("https://www.majestictiles.com/en/porcelain-tiles/1/200/");
getPageImage("https://www.majestictiles.com/en/porcelain-tiles/1/200/");
}


function getPageContent(url) {
  var sheet = SpreadsheetApp.getActiveSheet();
  var range = sheet.getRange("A1");
  var cell = range.getCell(1,1);
  
  var response = UrlFetchApp.fetch(url);
  
  var textResp = response.getContentText();
  
  var start, end, name;
  var i;
  for(i=0; i<163; i++){
    start = textResp.indexOf('<div class="product-list-item-wrapper">', end) + 39;
    start = textResp.indexOf('>', start) + 1;
    end = textResp.indexOf('</a>', start);
    name = textResp.substring(start, end);
    cell.setValue(name);
    cell = cell.offset(1,0);
  }
  
}

function getPageImage(url) {
  var sheet = SpreadsheetApp.getActiveSheet();
  var range = sheet.getRange("B1");
  var cell = range.getCell(1,1);
  
  var response = UrlFetchApp.fetch(url);
  
  var textResp = response.getContentText();
  
  var start, end, name;
  var i;
  for(i=0; i<163; i++){
    start = textResp.indexOf('<img class="product-list-image" src=', start) + 37;
    end = textResp.indexOf('"', start);
    name = textResp.substring(start, end);
    cell.setValue(name);
    cell = cell.offset(1,0);
  }
  
}

В чем собственно проблема? Код парсинга (вернее назвать это скраппингом scrapping запускается в браузере или nodejs-ом?

Я в свое время писал скреппинг данных. Может тебе поможет как пример https://github.com/podgorniy/timeanddate-scrapper