This userscript hides all Mastodon posts that you've already liked or boosted, to help reduce visual clutter in your timeline.
The behavior is toggleable via a floating button in the UI, and the setting is remembered across sessions.
If the feature is switched to ON, the posts are hidden after 4,5s.
- Automatically hides posts you've liked ⭐ or boosted ♻️
- Adds a small floating toggle in the bottom-right corner
- Persists your ON/OFF setting using localStorage
- Debug-friendly styling before hiding (orange dashed border)
- Works on
sueden.social,mastodon.social, and any*.socialinstance
Toggle the feature on and off:

The script observes all .status elements and checks whether:
- The post was liked (button with
.star-icon.active) - The post was boosted (button with
titleoraria-labellike "Beitrag nicht mehr teilen" or "Unboost")
If either is true, the surrounding <article> element is marked and eventually hidden.
It uses MutationObserver to work with infinite scrolling.
A small button appears in the bottom-right corner:
| State | Appearance |
|---|---|
| ON (active) | Blue button: Interacted-Hiding: ON |
| OFF | Gray button: Interacted-Hiding: OFF |
Click the button to toggle the hiding logic.
To help with debugging and testing, there's a short delay (default: 4.5 seconds) before a post gets hidden.
This gives you time to verify that the detection worked.
const HIDE_DELAY_MS = 4500;Install via Tampermonkey or a compatible userscript manager.
You can easily adjust the HIDE_DELAY_MS constant in the script if you prefer instant hiding.
const HIDE_DELAY_MS = 4500;MIT – free to use, modify, share. – see the LICENSE file for details.
Please feel free to submit issues or pull requests if you'd like to improve the script.
