function dblLink(){
const boldStyle = SpreadsheetApp.newTextStyle()
.setUnderline(false)
.setBold(true)
.setForegroundColor("#000000")
.build();
const value = SpreadsheetApp.newRichTextValue()
.setText("Ссылка1\nСсылка2\nСсылка3")
.setLinkUrl(0, 7, "
https://ya.ru/")
.setLinkUrl(8, 15, "
https://www.google.ru/")
.setLinkUrl(16, 23, "
https://vk.com/feed")
.build();
SpreadsheetApp.getActiveSpreadsheet().getActiveCell().setRichTextValue(value)
}
А чё так можно было, чтоли?