Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

ExpertsExchangeFilter

Removes all the garbage, fake entries and other stuff. No longer decrypting text as it isn't needed. Removes big box, and multiple testimonials on experts exchange site.

Updated date: 2/6/08
It removes the fake experts exchange posts, the big box of junk, and other stuff.

-Removed large experts exchange "zones" box
-Removed multiple testimonial boxes on page.
-Removes fake posts




Jul 29, 2008
verifex Script's author

Sorry guys, it looks like many Experts-Exchange pages do not have content on them anymore unless you login, not all of them are like that though. They only partially locked down Experts-Exchange so that you cannot access their content without being a member. Look forward to fewer and fewer Experts-Exchange results in Google as a result. Good riddance!

 
Jul 28, 2008
voffka.kosyakov User

It doesn't work anymore :(
3 days ago (July, 25) it worked for me..

 
Jul 11, 2008
Tim Byng User

Thanks for the script. I have been using it for a little while and it has been really helpful. One of the things that I don't like is that the parts of the page are removed after rendering (this is a Greasemonkey limitation). To get around this issue, I decided to try to use Adblock Plus with the Element Hiding Helper to do something similar. After a minute or two, I have it hiding the sections I don't want to see, plus it appears to occur before the rendering (it definitely seems that way), so the page actually loads faster now. Just in case anyone is interested, here are my element hiding rules:


experts-exchange.com#DIV(class=ontopBanner)
experts-exchange.com#A(class=squareSignUp squareSignUpWide)
experts-exchange.com#A(href=https://secure.experts-exchange.com/register.jsp?rsid=20&srid=jXdLOGtPKKF4Hvj9vtL%2F5g%3D%3D&redirectURL=%2FProgramming%2FLanguages%2FScripting%2FJavaScript%2FQ_20636704.html&qpid=8&cid=554)
experts-exchange.com#DIV(class=s sectionFour shFFF5 sgray expGray allZonesMain taSearchRow)
experts-exchange.com#DIV(class=hasMouseOver)

 
Apr 22, 2008
Arthaey Angosii Scriptwright

Thanks, this is a useful script. I've modified my own copy to also hiding the signup link and the questions stats:


// Kill the signup link
$x("//a[@class[contains(.,'squareSignUp')]]",document)[0].style.display="none"

// Kill the "Question Stats" section
$x("//div[@class[contains(.,'qStats')]]",document)[0].style.display="none"

 
Mar 3, 2008
koonkii User

awesome! cut the page size by over 2/3rds !

 
Feb 6, 2008
verifex Script's author

The script needs to basically remove the top half of the experts exchange page now, so I can make it do that easily.

 
Feb 4, 2008
Tim Costello User

does this mean no more updates then ?

 
Sep 29, 2007
verifex Script's author

I think less and less I'm updating this script because I want the privilege to view experts exchange pages, and more because I want them to change their evil ways.

 
Sep 15, 2007
pulseforce Scriptwright

Umm what the hell?

The problem was that it WASN'T scrambled after the jump, and the code scrambled the comment!

Shit :O

They now use a mix of scrambled and unscrambled comments to combat these decoders.

Check for yourself:
http://www.experts-exchange.com/Web/Web_Languag...

 
Sep 15, 2007
pulseforce Scriptwright

Thanks for this, I've used it for a long time.

However, they've very recently modified the site's comment scrambling. It is still rot13 above the jump (the huge box full of links) so the decoder still works there, but after the jump it uses another scheme. :-/

 
Aug 24, 2007
antraxx User

how to install? thanks for an answer...

 
Aug 9, 2007
Michael Paul User

very nice. works on firefox 2.0.0.6

 
Jul 20, 2007
Xtina Scriptwright

Oh my goodness, bless you for this. This is *fantastic*.

 
Jun 17, 2007
verifex Script's author

I added the text descrambler as described by tagor.

 
Jun 10, 2007
Dmitri User

The script doesn't work anymore.
All I can see is words like sfgdfo sdgfghr...

 
May 22, 2007
tagor Scriptwright

Here's code to descramble the text:
function rot13(s)
{
var r='';
for (var i=0, len=s.length; i<len>
{
c = s.charCodeAt(i);

if ((c >= 65 && c <= 77) || (c >= 97 && c <= 109))
{
c = s.charCodeAt(i) + 13;
}
else if ((c >= 78 && c <= 90) || (c >= 110 && c <= 122))
{
c = s.charCodeAt(i) - 13;
}
r += String.fromCharCode(c);
}
return r;
}

a=document.getElementsByTagName('div')
for(i=0;i
{
if (a[i].className == 'answerBody quoted')
{
a[i].innerHTML = rot13(a[i].innerHTML).replace(/<oe />
}
}

 
Apr 27, 2007
nico5038 User

Why unblur the comments ?
When a site is trying to get you to pay for the effort of voluntairy "experts", it's better to use the "remove experts-exchange from google" script :-)
Just use www.thescripts.com instead. A lot of EE experts have moved to there (like me) and that site is really free !

Nic;o)

 
Apr 26, 2007
viriiman User

THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU THANK YOU!

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