Vai al contenuto

To quickly copy all share links of loaded items in Memos, for crawling and things:

To quickly copy all share links of loaded items in Memos, for crawling and things:

JavaScript
Array.from(document.querySelectorAll('a[href^="/m/"]')).map(
  el => el.href.slice(0, -'#comments'.length)).join('\n');