Forum
Comments:
-
- on Thu 12 Nov 2009
- 09:25:53 AM UTC
Re: Anyone?
You might get more answers if you posted the question to the Chromium discussion group, for example.
You might get more answers if you posted the question to the Chromium discussion group, for example.
Chrome tab-at-once limit?
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,'')