4

Say I go to a page on eBay (but this applies to any or at least many websites, so it's not eBay specific) and I want to view pictures and save them..

I move my mouse over to the pic I right click, and there's no way I can currently see to copy the image URL and no way to save the image. 'Save as' brings up a webpage save.

4 Answers 4

2

go to the developer tools by pressing shift+ctrl+i ... and then select the resources tab .. and on the left hand side .. expand 'frames' and then finally expand 'Images' and there you can find all the images that have been used in site...

Image added by barlop enter image description here

1
  • looks like your answer is true to the most recent chrome update, as of writing.
    – barlop
    Commented Jul 18, 2014 at 13:01
6

Looks like some JavaScript sorcery is preventing you from saving an image that you clearly see!

In Google Chrome, you can use a workaround in Developer Tools (CtrlShiftI or Tools >> Developer Tools) to capture the images as they are being downloaded.

  1. In Developer Tools, choose the "Network" tab.
  2. Select the "Images" filter at the bottom.
  3. Reload the page.
  4. Scroll through the images captured and find the one(s) that you want.

enter image description here

8
  • It could also be CSS: a floating, transparent div element could be between your mouse and the image.
    – iglvzx
    Commented Jun 6, 2012 at 7:32
  • 2
    True, but in this site's case, I checked the source code, and the image isn't under a transparent <div> at its expected location, so I think it has to be some JavaScript.
    – Deltik
    Commented Jun 6, 2012 at 7:35
  • Nicely done. IE doesn't have the problem with the javascript, maybe just Chrome.
    – barlop
    Commented Jun 6, 2012 at 8:07
  • 1
    @barlop This is not a Chrome bug, it's obviously an IE bug. The intention of the Javascript is that the image URL can't be copied that easily.
    – slhck
    Commented Jun 6, 2012 at 8:17
  • @Deltik Look closer! Below the <div> that contains the <img>, there is another <div style="height:498px;width:498px;">. If you delete this element, you can save/copy the image as usual. But I agree, the Network tab will always show all images.
    – iglvzx
    Commented Jun 6, 2012 at 8:27
4

You could try drag and drop of the image to your desktop (or other folder). The image file is copied automatically.

If all fails, a simple: ALT+Print Screen will capture your active window.

1
  • +1 "You could try drag and drop of the image to your desktop (or other folder). The image file is copied automatically." Nicely done. it's not copying the link but still fantastic!
    – barlop
    Commented Jun 6, 2012 at 8:47
0
  • If you are using firefox, try CTRL+I and it will open page info, then look for the image url and copy it in your address bar. It will load just the image.
  • Or You can use firebug instead.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .