Visit (opens in new tab) https://bugzilla.mozilla.org/page.cgi?id=user_activity.html&action=run&group=bug&who=ENTER_YOUR_EMAIL_ABOVE
const bugs = [
...document.querySelectorAll(".report_row_even, .report_row_odd"),
]
.map((row) => [
row.firstElementChild?.firstElementChild?.innerText,
row.firstElementChild?.firstElementChild?.title
])
.filter(([firstCol]) => firstCol && firstCol.match(/\d+/));
const uniqueBugs = [...new Set(bugs)];
console.log(JSON.stringify(uniqueBugs));