moustache your facebook friends

Last update on Apr 26, 2006

Moustache your friends, and "facebook me": facebook.com/profile.php?id=208628

This script allows to to put moustaches on your friends pictures on their profile pages. You can also resize the moustaches by positioning your mouse cursor over the moustache and hitting the left or right arrow keys.




You could comment on this script if you were logged in.

8 comments Feed-icon

1 point
login to vote
James Pereira script's author
Posted Apr 11, 2007

Oh, wow, I should pay more attention to my scripts. I didn't know anyone was using them. I made a few modifications awhile back to this and added animal bodies and things. I'll u/l, along with recent modifications, as soon as I revisit it and make sure it's cool.

1 point
login to vote
Posted Mar 20, 2007

I should add that the left/right arrows only change the width. the [] will change the height. I'll see about adding in a rotate later, it would require 2 x points and 2 y points... which I'll have to do some fiddling with to get to work.

1 point
login to vote
Posted Mar 20, 2007

Here's a couple bits to the resize function that I made. Originally I had it mapped to the up/down arrows, but that conflicts with page scrolling so I've set it to [] instead... eventually, I'll probably end up switching it all over to wasd

      	if(e.keyCode==221)
      	{ //This bit by Richard Ward [wardrich@gmail.com]
      	  //keyCode 221 is the ] key
      	  current_img.height += 1;
      	}
      	if (e.keyCode==219)
      	{ //this bit  by Richard Ward [wardrich@gmail.com]
      	  //keyCode 95 is the -/_ key
      	  current_img.height -= 1;
      	}
      

1 point
login to vote
Adam 7 user
Posted Nov 25, 2006

sorry, not profile.php, but album.php (http://*facebook.com*album.php*), and http://*facebook.com*photo_search* so as to include all possible tagging instances.

1 point
login to vote
Adam 7 user
Posted Nov 25, 2006

IMO the best Greasemonkey script out there. It'd help if it had a rotate feature as well (I'm not skilled enough to create on myself), but otherwise well done. For future versions, you might want to add

*facebook.com/photo.php?*
*facebook.com/profile.php?*

to the included sites list. Just a thought

1 point
login to vote
James Pereira script's author
Posted Oct 1, 2006

Actually, there is resize. You have to look in the code for the info:
// @description ********************************************
// @description ** TO RESIZE MOUSTACHES, HOVER OVER THE **
// @description ** MOUSTACHE AND PRESS THE LEFT OR RIGHT **
// @description ** ARROW KEY **
// @description ********************************************

1 point
login to vote
Adam 7 user
Posted Sep 25, 2006

quite possibly the greatest script ever created. Unfortunately, there's no resize or rotate feature. If this had a few more options, it would earn my unqualified reccomendation.

1 point
login to vote
djm user
Posted Aug 16, 2006

Haha, good for laugh..

Works as of 17.Aug.2006

You could comment on this script if you were logged in.