getRichTextValue()
, возвращаемый объект имеет метод getLinkUrl()
.cell.getRichTextValue().getLinkUrl();
/**
*
* @param {GoogleAppsScript.Spreadsheet.Range} ref
*/
function extractLink_(ref) {
const richTextValues = ref.getRichTextValues();
return richTextValues.map((row) =>
row.map((cell) => {
return cell.getLinkUrl();
}),
);
}
makeCopy
saveAndClose