(The quickest way to register)

Forum

  1. User picture
    • Delan Azabani on Wed 11 Nov 2009
    • 12:15:55 PM UTC

    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,'')

Comments:

  1. User picture
    • Delan Azabani on Thu 12 Nov 2009
    • 09:14:23 AM UTC

    Anyone?

    Anyone?