You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ZIP feature doesn't seem to work at all when run in Tampermonkey, though running locally through the developer mode in Manage Extensions works fine. The code just seems to hang on the await zip.generateAsync({ type: "blob" }) line in content.js:
if(asZip&&downloadedCount>0){console.log(`Generating zip file...`);constzipBlob=awaitzip.generateAsync({type: "blob"});constsanitizeName=postTitle.replace(/[<>:"/\\|?*\x00-\x1F]/g,'').replace(/^\.+/,'').replace(/\.+$/,'').replace(/\.+/g,'.').trim();constzipFilename=`${sanitizeName}.zip`;awaitsaveBlob(zipBlob,zipFilename);console.log(`Zip file downloaded: ${zipFilename}`);}
Not sure if it's a permissions or meta key issue with Tampermonkey or what.
The text was updated successfully, but these errors were encountered:
The ZIP feature doesn't seem to work at all when run in Tampermonkey, though running locally through the developer mode in
Manage Extensions
works fine. The code just seems to hang on theawait zip.generateAsync({ type: "blob" })
line in content.js:Not sure if it's a permissions or meta key issue with Tampermonkey or what.
The text was updated successfully, but these errors were encountered: