» Mastodon Timeline Counter user script «

The feeling of being lost in time due to the curse of infinite scrolling is over. 🎉 This script shows the estimated number of posts left when you go through someone's posts. → https://greasyfork.org/en/scripts/468729-mastodon-timeline-counter

It was an awful lot of hassle, but it was worth it.

#mastodon #mastodonTweak #userscript #userjs #js

Mastodon Timeline Counter

Indicates the number of remaining posts on the timeline.

Distinguishing original posts and boosts with an indicator line.
(Red for original posts, blue for boosts.)

User CSS for the dark theme → https://pastebin.com/RMjQJwVT

#mastodon #mastodonTweak #css #usercss #userstyle

Distinguishing original posts and boosts with a colored left border - Pastebin.com

Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.

Pastebin
My lil css tweak for productivity
.status__content {
max-height: 48px;
font-size: 0.8rem;
transition: max-height 200ms;
}
.status__content:hover {
max-height: 500px;
}
#css #mastodonTweak