This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name reddit x-post | |
// @namespace reddit_xpost | |
// @description add x-post link | |
// @include https://www.reddit.com/* | |
// @version 1.1 | |
// @grant none | |
// ==/UserScript== | |
function makeXpostLinks () { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a.subreddit[href$="r/nononono/"]:hover, | |
a.subreddit[href$="r/SweatyPalms/"]:hover { | |
min-width: 12em; | |
display: inline-block; | |
margin-bottom: 0; | |
} | |
a.subreddit[href$="r/nononono/"]:not(:hover), | |
a.subreddit[href$="r/SweatyPalms/"]:not(:hover) { | |
font-size: 0; | |
position: relative; |