The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
Downloading Images from a specific thread
Hello,
I would like to download images and attachments from specif threads. I figured this would be simple but I am having a hard time. Anyone have a simple solution? Thanks |
#2
|
|||
|
|||
Like a third party tool or a tool locally on your server that pulls all embedded images and attachments into a zip file?
|
#3
|
||||
|
||||
Anything that would accomplish the goal.
I have tried a couple Firefox extensions but they do not work well with Vbulletin. |
#4
|
|||
|
|||
Made a jQuery script for fun which should download any images in threads.
Open up developer tools and execute the following in the console: HTML Code:
$(".postcontent img").each(function(index, val){
if($(val).attr('src').indexOf("smilie") === -1){
var a = $("<a>").attr("href", $(val).attr('src')).attr("download", $(val).attr('src').split("/")[$(val).attr('src').split("/").length - 1]).appendTo("body");
a[0].click();
a.remove();
}
});
|
Благодарность от: | ||
RichieBoy67 |
#5
|
||||
|
||||
Thanks so much Dave, tried something close to that but the only issue is that it makes me save each one which will take a very long time.
I wonder if i can change a setting inside Firefox to make it download auto.. hitting the do this automatically box is not doing the trick. I think I may have it..will let you know. Thanks buddy! |
#6
|
|||
|
|||
It downloads automatically in Chrome, but I'm sure there's some kind of setting for this in FireFox as well.
|
#7
|
||||
|
||||
Yeah, I got it working by going into the settings though it stops for duplicates. Still it does the job.
Thanks much Dave! |
#8
|
|||
|
|||
There are website copy tools: https://www.httrack.com/
You may be able to choose which to download: images, videos, attachments etc or the entire website. You may want to check them out. I think it will download all images into a directory etc... Enjoy, William |
Благодарность от: | ||
RichieBoy67 |
#9
|
||||
|
||||
Quote:
|
#10
|
||||
|
||||
another great download tool is quadsucker. you can set image properties, so it doesn't dl thumbs and so on...
http://www.quadsucker.com/quadweb/ haven't used it for a couple of years, but i guess it works with win 8.x/10 too |
Благодарность от: | ||
RichieBoy67 |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|