Show All Replies

Drag this to your bookmarks bar. Clicking it will show all replies in a Bluesky or Twitter thread from people you muted.

🙈 show all 🙈

Bookmarklet created with Bookmarkleter.

Unminified source code:
1var d = document;
2var $$ = d.querySelectorAll.bind(d);
3var l = window.location.hostname;
4switch (true) {
5case l.includes('bsky.app'):
6 [...$$('div')]
7 .filter(div => div.innerHTML.trim() === 'Show')
8 .filter(div => !!div.offsetParent)
9 .forEach(e => e.click());
10 break;
11case l.includes('twitter.com'):
12case l.includes('x.com'):
13 [...$$('span')]
14 .filter(div => div.innerHTML.trim().match(/^(View|Show replies|Show more replies)$/))
15 .forEach(e => e.click());
16 break;
17}