Try using "Template" action and construct your text with hyerlinks than paste it to page.
Other option is to create simple LOCAL html page somewhere on your hard disk with
desired text and links, than open that local html page in another tab in BAS and than copy
from that tab to the tab where you are working.
Кто разбирается в коде подскажите плиз нужно типо генератора Gmail адресов с точками
-
Нужно получить примерно такой результат:
1234.5@gmail.com
123.45@gmail.com
123.4.5@gmail.com
12.345@gmail.com
Нашел код, никак не пойму как подружить его с БАС
Вот так выглядит:self.addEventListener('message', function(e) { var data = e.data; generateEmails(data); }, false); function generateEmails(username) { var username_length = username.length; var combinations = Math.pow(2, username_length - 1); for (i = 0; i < combinations; i++) { var bin = decbin(i, username_length - 1); var full_email = ""; for (j = 0; j < (username_length - 1); j++) { full_email += username[j]; if (bin[j] == 1) { full_email += "."; } } full_email += username[j] + "@gmail.com\n"; self.postMessage(full_email); } } function decbin(dec, length) { var out = ""; while (length--) out += (dec >> length) & 1; return out; } -
Если не получится сделать кодом, как вариант выгружайте готовую генерацию
https://generator.email/blog/gmail-generator -
In Bas You should execute code with this code

N:B: Before Executing This code you must need to set USERNAME variable
var emails = []; function generateEmails(username) { var username_length = username.length; var combinations = Math.pow(2, username_length - 1); for (i = 0; i < combinations; i++) { var bin = decbin(i, username_length - 1); var full_email = ""; for (j = 0; j < (username_length - 1); j++) { full_email += username[j]; if (bin[j] == 1) { full_email += "."; } } full_email += username[j] + "@gmail.com\n"; emails.push(full_email) } } function decbin(dec, length) { var out = ""; while (length--) out += (dec >> length) & 1; return out; } generateEmails([[USERNAME]]); [[EMAILS_LIST]] = emails;