Created
July 24, 2011 04:41
-
-
Save styfle/1102255 to your computer and use it in GitHub Desktop.
Facebook chat fixer. Paste in your URL to hide inactive users.
This file contains hidden or 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
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