Filter Highlights Sidebar
|
|
I've extended the current FB Purity script to also filter out 'Fan' and 'App' entries in the Highlights Sidebar on the Facebook homepage. I was wondering if others are interested in this functionality. Cheers,
|
|
|
there are already various scripts that do this, why duplicate functionality?
|
|
|
This isn't what I want. I'm still interested in seeing notes, pictures, etc. that involve my friends. I simply don't care about what apps they are using or what things they've become a fan of. |
|
|
I'd actually really like to see a functionality like this added, for the same reason you mention. Though I don't particularly mind the 'Fan' info, it's the info about the 'Apps' people are using that I'd love to get rid of. |
![]() ![]() |
if (hotStream=document.getElementsByClassName('UIHotStream')[0]) {
var highlights = document.evaluate('//a[contains(@href, "http://www.facebook.com/apps/")]/ancestor::div[contains(@class, "UIHotStory")] | //img[contains(@class, "sx_icons_fbpage")]/ancestor::div[contains(@class, "UIHotStory")]', hotStream.parentNode.parentNode, null, 6, null), i = 0, high;
while (high = highlights.snapshotItem(i++))
high.parentNode.removeChild(high);
}
|

