Could use a bookmarklet once you're already on the page?
let newLabels = Array.from(document.querySelectorAll('.list-collection-row .label.label-warning')); newLabels.map((label, i) => window.open(label.parentNode.querySelector('a').href, '_blank'));
Thanks! This is how I imagined my Python script working, but I need to read up on DOM some more.
You're welcome! Gotta do something useful while at work :)
@Drakien started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
Could use a bookmarklet once you're already on the page?