Skip to content

Instantly share code, notes, and snippets.

@tai-cha
Forked from mtsgi/cdfd.js
Last active May 14, 2020 08:28
Show Gist options
  • Save tai-cha/eab5f82978532c0e7bccace18f23b522 to your computer and use it in GitHub Desktop.
Save tai-cha/eab5f82978532c0e7bccace18f23b522 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'))
})
document.querySelectorAll("a[aria-label][data-focus-id][target=_blank]").forEach(e=>{0===e.getAttribute("href").search(/https?:\/\/drive\.google\.com\/open\?/)&&window.open(e.getAttribute("href").replace(/https?:\/\/drive\.google\.com\/open\?/,"https://drive.google.com/uc?export=download&"),e.getAttribute("href"))});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment