Skip to content

Instantly share code, notes, and snippets.

@mtsgi
Created May 12, 2020 14:07
Show Gist options
  • Save mtsgi/1c97188184b9397f4a6c24c3492cc916 to your computer and use it in GitHub Desktop.
Save mtsgi/1c97188184b9397f4a6c24c3492cc916 to your computer and use it in GitHub Desktop.
Classroomの資料一括ダウンロードするやつ (Google Classroom Drive Files Downloader)
document.querySelectorAll('a[aria-label][data-focus-id][target=_blank]').forEach(anc => {
if(anc.getAttribute('href').search(/https?:\/\/drive\.google\.com\/open\?/) === 0)
window.open(anc.getAttribute('href').replace(/https?:\/\/drive\.google\.com\/open\?/, 'https://drive.google.com/uc?export=download&'), anc.getAttribute('href'))
})
@mtsgi
Copy link
Author

mtsgi commented May 12, 2020

ブラウザーのポップアップブロックは解除してください

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment