I can search the others properties. eg. state, limit, danger, exists.
chrome.downloads.search({state: 'in_progress'});
chrome.downloads.search({state: 'interrupted', limit: 50});
chrome.downloads.search({exists: true});
But with the error: property, it returned all results.
chrome.downloads.search({error: 'USER_CANCELED'});
chrome.downloads.search({error: 'CRASH'});
Is it possible to search state: interrupted and all network errors at the same time?
chrome.downloads.search({state: 'interrupted', error: 'NETWORK_DISCONNECTED', error: 'NETWORK_FAILED', error: 'NETWORK_TIMEOUT'});