Can I block eHow pages from appearing in my Google search results?
-
When I run Google searches, many of the top results are from eHow. Unfortunately, in my experience these results are almost always unhelpful. Is there a way to prevent eHow pages from appearing in my search results? I use Firefox and am amenable to installing add ons.
-
Answer:
There's a FF add-on called "OptimizeGoogle" which seems capable of doing what you want.
jed at Ask.Metafilter.Com Visit the source
Other answers
When you're searching for something, why not just add -ehow to every search? That'll remove any page from ehow from the results.
peacheater
-site:ehow.com
empath
How about trying out a different search engine? The new http://blekko.com/ omits content/link farm content from its results by default. For a general overview, see http://searchengineland.com/blekko-the-slashtag-search-engine-goes-live-54447.
acridrabbit
OptimizeGoogle is great! I hacked an existing greasemonkey script to remove certain domains (I'm looking at you, eHow), for posterity: // ==UserScript==// @name Google hated domains remover// @namespace http://www.google.com// @description Removes results for any page from google which is listed in banned// @include http://www.google.*/search*// @include http://*.google.*/search*// ==/UserScript==// Hacked from arantius' "Google about.com remover"// http://www.arantius.com/misc/greasemonkey/var banned = [ "roseindia.net", //"experts-exchange.com", "weask.us", "ehow.com", "efreedom.com", "6api.com", "kods.net", "questionhub.com", "expert.tc", ];var str = '';for(var i=0; i<banned.length; i++) { if(i != 0) { str = str + ' | '; } str = str + '//a[contains(@href, "' + banned[i] + '")]/..';}var results=document.evaluate(str, document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);for (var result=null, i=0; result=results.snapshotItem(i); i++) { result.parentNode.parentNode.style.display='none';}
beerbajay
Yep, it works.
jon1270
I used http://www.google.com/cse/ to accomplish this at work (in that case, to filter out useless results form a pay site).
trunk muffins
Thanks for the suggestions, MeFites. I'm aware of the -ehow option, but would prefer not to have to put it in every search. I'll check out Google Custom Search and OptimizeGoogle.
jed
Related Q & A:
- Unwanted Google search results of me?Best solution by Quora
- Bogus Yahoo and Google Search results?Best solution by Yahoo! Answers
- Why isn't my website in google search results?Best solution by Webmasters
- How Can I Block Ads On Google Chrome?Best solution by eHow old
- How do I clear links that have been clicked from google search?Best solution by Quora
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.