Simple Userscripts and Other Knick-Knacks

Marker
Boot badge - It's Bootiful
Fried Chicken - Attended an April Fools event
Liberty Belle - Sings the song of the unchained

Misanthrope
I’m creating this thread as a place to post small-scale scripts, styles, or any other utilities or enhancements that don’t necessitate the existence of their own individual threads, so as to avoid cluttering up the forum.
Marker
Boot badge - It's Bootiful
Fried Chicken - Attended an April Fools event
Liberty Belle - Sings the song of the unchained

Misanthrope
Next thing I have is a small custom CSS rule that adds a small delay to the tag’s hover dropdowns, so that they won’t get in the way when you are trying to click on the tags below them, like so:  
full
 
Here is the CSS, you can add the styles manually. Or if you have Stylus installed, simply click here.
 
.tag.dropdown .dropdown__content {
display: block;
overflow-y: hidden;
max-height: 0vh;
padding: 0px;
transition: max-height 0s, padding 0s;
}
.tag.dropdown:hover .dropdown__content {
transition-delay: 0.5s;
max-height: 100vh;
}
Syntax quick reference: **bold** *italic* ||hide text|| `code` __underline__ ~~strike~~ ^sup^ %sub%

Detailed syntax guide