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:
var d = document;
var $$ = d.querySelectorAll.bind(d);
var l = window.location.hostname;
switch (true) {
case l.includes('bsky.app'):
  [...$$('div')]
  .filter(div => div.innerHTML.trim() === 'Show')
  .filter(div => !!div.offsetParent)
  .forEach(e => e.click());
  break;
case l.includes('twitter.com'):
case l.includes('x.com'):
  [...$$('span')]
  .filter(div => div.innerHTML.trim().match(/^(View|Show replies|Show more replies)$/))
  .forEach(e => e.click());
  break;
}