Skip to content

Instantly share code, notes, and snippets.

@styfle
Created July 24, 2011 04:41
Show Gist options
  • Save styfle/1102255 to your computer and use it in GitHub Desktop.
Save styfle/1102255 to your computer and use it in GitHub Desktop.
Facebook chat fixer. Paste in your URL to hide inactive users.
javascript:var friends = document.getElementsByClassName('fbChatOrderedList')[1].getElementsByClassName('item'); for (var i=0;i<friends.length; i++) { if (friends[i].className != "item active") friends[i].style.display = "none"; } ChatSidebar.toggle(); ChatSidebar.toggle();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment