Results 1 to 9 of 9

Thread: Imagebam  

  1. #1
    Active Member
    Joined
    26 Mar 2019
    Posts
    14
    Likes
    0
    Images
    0

    Imagebam

    can you download off of imagebam?

  2. #2
    Illegitimi Non Carborundum Progishness's Avatar
    Joined
    3 Jun 2015
    Posts
    10,121
    Likes
    79,469
    Images
    421,063
    Location
    Sodom Hall 

    Re: Imagebam

    Yes, but you usually need to open one image in your browser first before sending the job to your downloader app. Personally I use ImageHostGrabber aka IHG with the Pale Moon browser and this tactic works a treat.

    See the topic here: https://vipergirls.to/threads/15095553-Im...pport-Thread
    Music is like sex - some like it deep and meaningful, some like it soft and floaty, and some like it hard and banging.

  3. Liked by 2 users: chav, protogen

  4. #3
    Elite Prospect chav's Avatar
    Joined
    5 Mar 2016
    Posts
    1,749
    Likes
    12,116
    Images
    1,859

    Re: Imagebam

    I was doing as prog does, too, but vripper 6.3.0 works too so I now use that.

    I am using this method to get imx.to now though!
    I hope someone makes a fix for that to vripper soon too.

  5. Liked by 1 user: Progishness

  6. #4
    Illegitimi Non Carborundum Progishness's Avatar
    Joined
    3 Jun 2015
    Posts
    10,121
    Likes
    79,469
    Images
    421,063
    Location
    Sodom Hall 

    Re: Imagebam

    All you can do is try my suggestion - if it works with your preferred downloader app then it works. BTW with IHG / Pale Moon, you only need to open an image first once per browser session.
    Music is like sex - some like it deep and meaningful, some like it soft and floaty, and some like it hard and banging.

  7. Liked by 1 user: protogen

  8. #5
    Active Member
    Joined
    26 Mar 2019
    Posts
    14
    Likes
    0
    Images
    0

    Re: Imagebam

    thanks can you download other peoples files on the imagebam site itself?

  9. #6
    Illegitimi Non Carborundum Progishness's Avatar
    Joined
    3 Jun 2015
    Posts
    10,121
    Likes
    79,469
    Images
    421,063
    Location
    Sodom Hall 

    Re: Imagebam

    I don't honestly know the answer to that.

    I forgot to mention that seeing as IHG is a browser add-on, it also works on other forum type sites, unlike the Viper Rippers which are specific to ViperGirls.
    Music is like sex - some like it deep and meaningful, some like it soft and floaty, and some like it hard and banging.

  10. Liked by 1 user: protogen

  11. #7
    Private Member falcon81's Avatar
    Joined
    18 Apr 2020
    Posts
    371
    Likes
    268
    Images
    192

    Re: Imagebam

    Can someone please share the correct Image Host Grabber host file info for Imagebam? Mine is populated with the following, but it's not working very well.

    URL Pattern:
    ^https?:\/\/(?:www\.)?imagebam\.com\/.+\/[^&]+$
    
    Search Pattern:
    function(pageData, pageUrl) {
    var iUrl = pageData.match(/img.+?src=\"(.+?)\" alt/);
    return iUrl ? {imgUrl: iUrl[1], status: "OK"} : {imgUrl: null, status: "ABORT"}
    }

  12. #8
    Active Member LadyLuck's Avatar
    Joined
    18 Dec 2016
    Posts
    98
    Likes
    167
    Images
    2
    Location
    Atlanta, GA 

    Re: Imagebam

    These are the URL Pattern and Search Pattern from my IHG for imagebam.com. I don't recall ever having had to modify these so they must have come from the most recent host file.

    URL Pattern:

    ^https?:\/\/.*imagebam\.com\/.*

    Search Pattern:

    function(pageData, pageUrl) {
    let retVal = { imgUrl: null, fileName: null, status: "ABORT" };

    // Search for <img ... class="main-image ... >
    const iTag = pageData.match(/<img\b[^>]*?\bclass\s*=\s*('|")main-image\b[^>]*?>/i);

    if (iTag) {
    // Extract the image URL
    const iUrlMatch = iTag[0].match(/\bsrc\s*=\s*('|")(.*?)\1/i);
    if (iUrlMatch) {
    retVal.imgUrl = iUrlMatch[2];
    retVal.status = "OK";

    // Extract the image filename (using alt attribute)
    const iNameMatch = iTag[0].match(/\balt\s*=\s*('|")(.*?)\1/i);
    if (iNameMatch) {
    retVal.fileName = iNameMatch[2];
    }
    }
    }

    return retVal;
    }

  13. Liked by 2 users: Progishness, protogen

  14. #9
    Illegitimi Non Carborundum Progishness's Avatar
    Joined
    3 Jun 2015
    Posts
    10,121
    Likes
    79,469
    Images
    421,063
    Location
    Sodom Hall 

    Re: Imagebam

    There's no need to tinker with anything in IHG - it works perfectly well as long as you open one image in your browser first.
    Music is like sex - some like it deep and meaningful, some like it soft and floaty, and some like it hard and banging.

  15. Liked by 2 users: Poiuz, protogen

Posting Permissions