Skip to content

Instantly share code, notes, and snippets.

View tai-cha's full-sized avatar

taichan tai-cha

View GitHub Profile
@tai-cha
tai-cha / cdfd.js
Last active May 14, 2020 08:28 — forked from mtsgi/cdfd.js
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'))
})