Turn on multithreaded download in chrome

I want to create a chrome extension that can include multi-threaded file uploads. Does chrome provide some API that can be used to read file streams using javascript?

I was wondering why chrome does not support multithreaded loading by default? Also, if there are any ways to do the same right now?

+5
source share
2 answers

The download API (currently only available for the dev channel) seems to support your request. Each call to the chrome.downloads.download method represents a self-loading within a separate thread (or process, for that matter).

+3

All Articles