Created
May 12, 2020 14:07
-
-
Save mtsgi/1c97188184b9397f4a6c24c3492cc916 to your computer and use it in GitHub Desktop.
Classroomの資料一括ダウンロードするやつ (Google Classroom Drive Files Downloader)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ブラウザーのポップアップブロックは解除してください