Tell me more ×
Web Applications Stack Exchange is a question and answer site for power users of web applications. It's 100% free, no registration required.

Since Google Search switched to the new layout, two things have been bothering me immensely. One is the absence of "cached version" links which are ocasionally very useful. How do I bring them back? (I know about archive.org, but sometimes this doesn't cut it.)

Another related thing is the live previews of websites which take up the right 1/2 of the results page and I don't want to use them. They steal screen space which I need for actual site text snippets. How can I turn them off?

share|improve this question

migrated from superuser.com Oct 27 '11 at 20:13

3 Answers

up vote 13 down vote accepted

Actually, the pages previews you dislike so much are your ticket to the cached page version – the link to the cached page has been moved into the preview area:

screenshot of Google cached page link in live preview

As to the preview itself, there is no way to completely disable it I am aware of. However, if you close a preview by clicking the small closing cross in its right upper corner, previews should only pop up when you hover over the >> area to the right of the search results.

share|improve this answer
1  
Wow, I never noticed the link, thanks! I know about the close button, the problem is that even after closing the preview it still takes up all the precious screen space. I'll wait for more input on this issue and in case there's nothing useful I'll accept your question. – user46935 Oct 27 '11 at 16:35
1  
Actually, I’d suggest you split off the second part of your question – that is an issue best addressed with browser extensions or UserScripts. – kopischke Oct 27 '11 at 19:55
… and that part actually would belong on SU :P. – kopischke Oct 27 '11 at 20:44

I guess the only way around it is by searching with cache: in the search field

share|improve this answer
Actually, the link is still there – in the preview panel :). See my answer. – kopischke Oct 27 '11 at 16:21
Oh I never saw that either, I hate those screenshots so I never really ever open them. – Sandeep Bansal Oct 27 '11 at 18:35

If you are using Firefox or Pale Moon, this bit of code will work with your usercontent.css file.

@-moz-document
domain(google.com)
{
  .vshid  /* Cached links */
    {
      display: block !important;
    }
}

source

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.