mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

2.7K
active users

#bookmarklets

0 posts0 participants0 posts today

Reclaiming the Web: How Developers are Personalizing Browsers with Bookmarklets and Extensions

As web browsers evolve, many users feel alienated by changes that prioritize corporate interests over individual needs. This article explores how developers are using bookmarklets and WebExtensions to...

news.lavx.hu/article/reclaimin

Working on an "expand all content warnings" bookmarklet for public timelines. It's a bit annoying having to expand all the damn CWs in a long CW'd thread.

Caveats: media not supported just yet. It will expand only collapsed toots though.

Array.from(document.getElementsByClassName("status__content__spoiler-link")).forEach(function(x) { if (x.parentNode.style["margin-bottom"] == "0px") { x.click() } })