Zet - How do I open all the commits in a PR in github in new tabs?

How do I open all the commits in a PR in github in new tabs?

Currently each commit link is an anchor tab with the class color-fg-default.

So using $$ to select all of those links and open each href on _BLANK

$$("a.color-fg-default").forEach((link) => window.open(link.href,"_BLANK"));

#github