I wrote a bookmarklet that I dub "SaveChan" that when I click on it,
opens each image post's image in a new tab that is on the current
*chan page.

I like opening a giant blob of images from a chan thread, but I notice
that Chrome only opens the first 35, unlike Firefox who does it
correctly (though 300 images may take 10-12 seconds).

Does anyone know of this apparent open-at-once limit, or is it just
me?

Here's the script by the way (which is bookmarklet-ified in the final
bookmarklet with void calls and the like, but this original is more
readable):

lp = document.getElementsByTagName('span');
for (ix = 0; ix < lp.length; ix++)
if (lp[ix].className=='filesize')
open(lp[ix].firstChild.nextSibling.href,'')
lp=document.getElementsByTagName('img')
for (ix = 0; ix < lp.length; ix++)
if (lp[ix].className=='multithumb')
open(lp[ix].parentNode.parentNode.href,'')

-- 
Chromium Discussion mailing list: [email protected] 
View archives, change email options, or unsubscribe: 
    http://groups.google.com/group/chromium-discuss

Reply via email to