Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Can I Mass-Download all my Uploads?

My Asset Library is full of custom art, geomorphs, and furniture. I've spent hundreds of hours creating art for my campaigns, and getting all my tile sets to mesh and match. I recently had a hard-drive malfunction and all my original files have been lost (shame on me for not backing them up). Is there a way that I can download the files that I've uploaded to my Roll20? I only want those assets that I created (I don't have any market assets), but because I have a lot of different files II don't want to do this one at a time, and I don't want to have to screen-shot, crop, etc. I'm hoping for some good news...
1475859101

Edited 1516591316
The Aaron
Pro
API Scripter
There is nothing built in for doing this, but I wrote a bookmarklet that makes it a little easier: javascript:(function(){ var links=$('div.library_result').map(function(idx,block){ var $block=$(block), img = $block.find('img'), name = $block.find('div.yourtags li').map(function(i,o){return $(o).text();}).toArray().join('_'), ext = img.attr('src').match(/\b(?:thumb|max|original)\b\.(\w*)/)[1]; return $('<a style="border:1px solid #999;float:left;display:block;width:52px;height:52px;" href="'+img.attr('src').replace(/\b(?:thumb|max)\b/,'original')+'" download="'+name+'.'+ext+'"><img style="max-width:50px;max-height:50px;" src="'+img.attr('src')+'"></a>').click(function(){$(this).css('opacity',0.5);}); }).toArray(); $('<div style="position:absolute;width:100%;top:10em;left0;z-index:10000;background-color: #ccc;"></div>').html(links).appendTo('body');}()); Process: 1. In Chrome, create a bookmark with the above as the URL. 2. Go to the  Your Library page. 3. Scroll to the bottom of the page and keep scrolling until all of your images are loaded. 4. Scroll back up to the top of the page. 5. Select the bookmark you created in step 1.  This will cause the execution of the included javascript which will build a block of image thumbnails at the top of the page. 6. Click each image to cause it to be downloaded at it's original resolution. Caveat : There isn't a way to retain the image name, so they will all be named original.jpg or original.png , etc. Hope that helps!
The Aaron, You just saved 1,000+ original art images. I can't even guess at how many hours of my life that is. This worked perfectly, and I'll be getting them organized (and backed up) for the next few hours. Would you like a copy of these files? It's the least I could do to show my thanks. Regards, Alex/Whooplaah
1475895669
The Aaron
Pro
API Scripter
No worries, and thanks for the offer!  Really, I just enjoy helping people. =D Happy Rolling!