I did find a feature in the Web Developer Toolbar to display the
dimensions of all the images on the page, but a smaller extension with
the pop-up capability would be best.
Thank you,
- Banjobarry
Looking at https://addons.mozilla.org I found this extension:
https://addons.mozilla.org/en-US/firefox/addon/3688 .
> Looking at https://addons.mozilla.org I found this extension:
> https://addons.mozilla.org/en-US/firefox/addon/3688 .
"List All Images" is not what he is looking for.
FxIF (Firefox exIF) allows you to view the EXIF data contained in JPEG images from the convenience of your Firefox browser. Most
digital cameras add this data to all images you take. http://ted.mielczarek.org/code/mozilla/fxif/index.html
I had it and it probably interferred with other Firefox usage, in any case
I'd rather rightclick on image and use the "Launchy" extension to invoke IrfanView
then type in "i" for information, which can provide a lot more information.
http://www.mvps.org/dmcritchie/firefox/firefox.htm#launchy_notes
http://www.irfanview.htm
http://www.mvps.org/dmcritchie/excel/irfanview.txt (notes)
--
David McRitchie, most questions have been asked before.
Firefox customizations/extensions notes, see
http://www.mvps.org/dmcritchie/firefox/firefox.htm
It's not as convenient as hover/mouseover, but right-clicking on the
image and selecting Properties from the context menu works for me.
- Alan
This bookmarklet will change the hover/mouseover text on all images to
show the dimensions.
javascript:(function(){function%20setTitleToDimensions(p){p.title=(String(p.offsetWidth)+%22%20x%20%22+String(p.offsetHeight));}function%20scanDoc(d){for(var%20i=0;i<d.images.length;++i){setTitleToDimensions(d.images[i]);}}scanDoc(document);for(var%20i=0;i<top.frames.length;++i){try{scanDoc(top.frames[i].document);}catch(err){;}}})();
--
Cheers,
Ralph
Or better still, use the following bookmarklet which will not count the
image border and padding in the dimensions.
javascript:(function(){function%20setTitleToDimensions(p){p.title=(String(window.getComputedStyle(p,%22%22).width)+"%20x%20"+String(window.getComputedStyle(p,%22%22).height));}function%20scanDoc(d){for(var%20i=0;i<d.images.length;++i){setTitleToDimensions(d.images[i]);}}scanDoc(document);for(var%20i=0;i<top.frames.length;++i){try{scanDoc(top.frames[i].document);}catch(err){;}}})();
--
Cheers,
Ralph