-
-
Save tai-cha/eab5f82978532c0e7bccace18f23b522 to your computer and use it in GitHub Desktop.
Classroomの資料一括ダウンロードするやつ (Google Classroom Drive Files Downloader)
This file contains hidden or 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')) | |
}) |
This file contains hidden or 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(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