erickutcher / httpdownloader

HTTP(S) download manager that uses input/output completion ports (IOCP).
https://erickutcher.github.io/#HTTP_Downloader
558 stars 62 forks source link

Interception filter #144

Closed anonymous1184 closed 4 years ago

anonymous1184 commented 4 years ago

Is there a way to filter (in browser extension)? Like, don't use for images and files smaller than X bytes.

erickutcher commented 4 years ago

Currently it's not possible to filter based on file size. When the extension is set to override the browser's download manager, it would be possible, in some cases, to detect the file size and allow it through. The same could be done with images (or whatever file type). In either case, it's probably better to manually check the size and file type. I'll think about it.

anonymous1184 commented 4 years ago

Thanks a lot, will wait in for it in case you decide to implement it.