Skip to content

Instantly share code, notes, and snippets.

@cmcavoy
Created June 22, 2011 20:22
Show Gist options
  • Save cmcavoy/1041052 to your computer and use it in GitHub Desktop.
Save cmcavoy/1041052 to your computer and use it in GitHub Desktop.
A greasemonkey script to replace the recommended follows with a picture of your latest friend!
// ==UserScript==
// @name Remove recommended follows from Twitter
// @namespace http://www.lonelylion.com/grease
// @include http://www.twitter.com/*
// @include http://twitter.com/*
// ==/UserScript==
var nice_friend = jQuery('img.user-profile-link')[0].src;
jQuery('.user-rec-inner').html('<img src="'+ nice_friend + '"> is super nice!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment