Created
July 5, 2012 22:09
-
-
Save kaezarrex/3056783 to your computer and use it in GitHub Desktop.
Give massive props on Twitter
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 Massive Props | |
// @namespace https://twitter.com | |
// @include https://twitter.com/* | |
// @description https://twitter.com/ryanqnorth/status/220970058548121600 | |
// ==/UserScript== | |
var script = document.createElement('style'); | |
script.innerHTML = '\ | |
.favorite { \ | |
font-size: 0; \ | |
} \ | |
.favorite:after { \ | |
content: "Massive Props"; \ | |
font-size: 12px; \ | |
position: relative; \ | |
left: -1px; \ | |
} \ | |
.unfavorite { \ | |
font-size: 0; \ | |
} \ | |
.unfavorite:after { \ | |
content: "Massive Props Given"; \ | |
font-size: 12px; \ | |
position: relative; \ | |
left: -1px; \ | |
} \ | |
.sm-fav{ \ | |
background: none !important; \ | |
width: 37px !important; \ | |
} \ | |
.sm-fav:after { \ | |
content: "(⌐■_■)"; \ | |
font-style: normal; \ | |
position: relative; \ | |
top:-3px; \ | |
} \ | |
.favorited .sm-fav:after { \ | |
color: #FF9B00 \ | |
} \ | |
'; | |
document.head.appendChild(script); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment