Guest User

Google Drive download helper bookmarklet

a guest
Feb 28th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(){
  2.     // Bookmarklet for Google Drive that downloads all files in the current page.
  3.     // Small files (< 25 MB) will download instantly, large files (> 25 MB) will open a confirmation tab.
  4.     // Does not work for folders.
  5.     // Compile with https://chriszarate.github.io/bookmarkleter/
  6.     var files = document.getElementsByClassName('flip-entry');
  7.     var id = '';
  8.     for (var i = 0; i < files.length; ++i) {
  9.         id = files[i].id.replace('entry-', '');
  10.         window.open('https://docs.google.com/uc?id=' + id + '&export=download', '_blank');
  11.     }
  12. })();
Add Comment
Please, Sign In to add comment