Skip to content

Instantly share code, notes, and snippets.

@kaezarrex
Created July 5, 2012 22:09
Show Gist options
  • Save kaezarrex/3056783 to your computer and use it in GitHub Desktop.
Save kaezarrex/3056783 to your computer and use it in GitHub Desktop.
Give massive props on Twitter
// ==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