リンクのPDFファイルをzipしてダウンロード
by
Lhankor_Mhy
2023-06-30 [2023/06/30 11:41:04]
ページ内にある~.PDFというリンクすべてからPDFファイルを取得して、zipして一括ダウンロードします。
@@ -3,7 +3,6 @@
* @description ~.PDFというリンクから、ファイルをダウンロードしてzipします。
* @include http://*
* @license MIT License
- * @private
* @javascript_url
*/
/*
* @title リンクのPDFファイルをzipしてダウンロード
* @description ~.PDFというリンクから、ファイルをダウンロードしてzipします。
* @include http://*
* @license MIT License
* @javascript_url
*/
(async ()=>{
function _import(s){
return new Promise(function(resolve){
const script = document.createElement('script');
script.src = s;
script.onload = function(){
resolve();
};
document.head.appendChild(script);
})
};
const sleep = time => new Promise(resolve=>setTimeout(resolve,time));
await import('https://cdnjs.cloudflare.com/ajax/libs/jszip/3.2.0/jszip.min.js');
await _import('https://cdn.jsdelivr.net/npm/file-saver@2.0.2/dist/FileSaver.min.js');
const zip = new JSZip();
async function downloader(element){
const response = await fetch(
element.href,
);
element.style.backgroundColor = 'gray';
await sleep(2000);
zip.file('files/'+element.textContent.trim(), await response.blob());
};
for ( let target of document.querySelectorAll('a[href$=".pdf"] ') ) {await downloader(target).catch(()=>{})};
const content = await zip.generateAsync({type:"blob"});
saveAs(content, 'files.zip');
})()
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。