Need Help? Contact the Espiya Helpdesk. CLICK HERE


Author Topic: Download All Images In An Espiya Post  (Read 6816 times)

redmond13

  • Active - First Star
  • *
  • Posts: 34
  • Karma 53
Download All Images In An Espiya Post
« on: April 09, 2017, 08:20:01 pm »
Helping you guys out. Kung ikaw ay isa ring "collector" this might come in handy.

Steps:
1. Press F12, and sa tabs na lalabas below your screen make sure you're under "Console
2. Copy and paste the js script below
3. Pag lumabas yung "Permission to download multiple files" allow mo lang (syempre :D)

Script:
Code: [Select]

  var jq = document.createElement('script');
        jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
        document.getElementsByTagName('head')[0].appendChild(jq);

        setTimeout(function () {
            // ... give time for script to load, then type (or see below for non wait option)
            jQuery.noConflict();

$ = jQuery;
            $('.bbc_img').each(function() {
 var a = document.createElement('a');
 a.href = $(this).attr('src');
 a.download = $(this).attr('src');
 a.click();
});
        }, 3000);


For peace of mind, here's about the script:
first 3 lines just imports jquery (para madali, auko mag mano2 at mag vanilla for this task lol)
next lines e instead nag titimeout lang ako to give time for jquery to load
the next lines say that for each elements na may class na bbc_img, mag lagay ka ng <a> tag nakapag na click e iddownload yung image.
lastly script automatically clicks the created <a> tags to download.

inexplain ko lang for you guys para baka kc isipin nio may virus or pang kuha ng kung anong details. Other devs may confirm, just comment for other user's peace of mind :)

I did this script for fun  ;D and dahil tamad ako mag right click + save all the time. thought you guys may use this as well.

Note: kung thumbnails lang yung asa post, sorry pero yung thumbnail lang yung maggrab nung script, you'll have to click, wait for the new tab then saka download manually :( otherwise for posts like this: http://espiya.net/forum/index.php?topic=168592.0;topicseen#sthash.z3XQ5zLH.dpbs you're good :)

Makaldz

  • Anubis Warrior
  • Deep Penetration Agent
  • Active - Top Level
  • *
  • Posts: 903
  • Karma 49
  • Gender: Male
  • Pax et Bonum
Re: Download All Images In An Espiya Post
« Reply #1 on: April 09, 2017, 10:24:18 pm »
Thanks for this. Appreciated much.

soundwav0

  • 2009 Cavaliers
  • Active - Top Level
  • *
  • Posts: 1150
  • Karma 1479
Re: Download All Images In An Espiya Post
« Reply #2 on: April 10, 2017, 03:25:15 am »


 bnana

























 ::laffman
« Last Edit: April 10, 2017, 03:40:57 am by soundwav0 »

ogamer104

  • Regional: Cebu
  • Active - Three Stars
  • *
  • Posts: 364
  • Karma 18
Re: Download All Images In An Espiya Post
« Reply #3 on: April 10, 2017, 03:59:32 am »
or use imagedownloader ng chrome.

redmond13

  • Active - First Star
  • *
  • Posts: 34
  • Karma 53
Re: Download All Images In An Espiya Post
« Reply #4 on: April 10, 2017, 04:35:59 am »
Nasanay gumawa ng mga grabber haha now i feel stupid..  bnana

Zbuffer101

  • Who Am I
  • Regional: Ilocano/Ilocos
  • Active - Top Level
  • *
  • Posts: 603
  • Karma 25
Re: Download All Images In An Espiya Post
« Reply #5 on: April 10, 2017, 02:52:29 pm »
do you know how to find up the instagram user / name / id of an posted image ?

for example may nag post instagram image link tapos gusto ko i follow

Thanks

redmond13

  • Active - First Star
  • *
  • Posts: 34
  • Karma 53
Re: Download All Images In An Espiya Post
« Reply #6 on: April 10, 2017, 09:19:33 pm »
do you know how to find up the instagram user / name / id of an posted image ?

for example may nag post instagram image link tapos gusto ko i follow

Thanks

Instagram sir hindi po, facebook though, yes.

Example in this post http://espiya.net/forum/index.php?topic=168950.0;topicseen#sthash.YUySCT6o.dpbs
1. Right click the target image, copy image address
2. dun sa image, copy mo yung susunod na set of numbers and characters after the first underscore

3. use it in this https://www.facebook.com/photo.php?fbid=<yung number na nakuha mo>
  ex. https://www.facebook.com/photo.php?fbid=10206350187943161

you'll be redirected dun sa original post where the image came from

note though that the post must be public

kirovskie

  • Regional: Ilocano/Ilocos
  • Active - Two Stars
  • *
  • Posts: 163
  • Karma 51
Re: Download All Images In An Espiya Post
« Reply #7 on: April 11, 2017, 02:34:36 am »
haha.. yeah okay na yang SAVE Page tapos delete nyo nlng mga ibang files ;) but sometimes if the resolution is maliit dito sa site ang disadvantage nyan e isasave nya lng yung exact size nya na sinet lng dito sa site .. not like going redirect to the image link.. some image links doesn't let you save the full resolution until you view it up.

soundwav0

  • 2009 Cavaliers
  • Active - Top Level
  • *
  • Posts: 1150
  • Karma 1479
Re: Download All Images In An Espiya Post
« Reply #8 on: April 11, 2017, 05:46:54 am »
Instagram sir hindi po, facebook though, yes.

Example in this post http://espiya.net/forum/index.php?topic=168950.0;topicseen#sthash.YUySCT6o.dpbs
1. Right click the target image, copy image address
2. dun sa image, copy mo yung susunod na set of numbers and characters after the first underscore

3. use it in this https://www.facebook.com/photo.php?fbid=<yung number na nakuha mo>
  ex. https://www.facebook.com/photo.php?fbid=10206350187943161

you'll be redirected dun sa original post where the image came from

note though that the post must be public


Leojseyer

  • Active - Top Level
  • ***
  • Posts: 1068
  • Karma 45
Re: Download All Images In An Espiya Post
« Reply #9 on: December 21, 2017, 03:20:10 am »
Like ko sana mag share ng photos but I don't know how. Can anyone explain the step by step procedure?

alwayshidden

  • Webmasters/Programmer
  • Active - Three Stars
  • *
  • Posts: 370
  • Karma 217
Re: Download All Images In An Espiya Post
« Reply #10 on: December 21, 2017, 03:43:38 am »
I just save the whole page of the topic. Then get(cut and paste) all pictures i wanted on the saved files.

syzmon

  • Mature (18+)
  • Active - Three Stars
  • *
  • Posts: 305
  • Karma 387
Re: Download All Images In An Espiya Post
« Reply #11 on: December 21, 2017, 12:14:21 pm »