- Head to lesson archive in recording manager.
- Run the following JavaScript in the Dev Console:
(function() {
const rows = document.querySelectorAll('tbody.TableDati-tbody tr');
const items = [];
for (const row of rows) {
const playLink = row.querySelector('td:first-child a[href*="evn_preview_link=evento"]');
if (!playLink) continue;
const href = playLink.href;