The erase
()
function of the downloads
API erases matching DownloadItems
from the browser's download history, without deleting the downloaded files from disk.
To remove the files from disk, you need to use downloads.removeFile()
.
This is an asynchronous function that returns a Promise
.
Note: If you want to remove a downloaded file from disk and erase it from history, you have to call downloads.removeFile()
before you call erase()
. If you try it the other way around you'll get an error when calling downloads.removeFile()
, because it no longer exists according to the browser.
var erasing = browser.downloads.erase( query // DownloadQuery )
query
downloads.DownloadQuery
object.A Promise
. If the call was successful, the promise will be fulfilled with an array of integers representing the ids of the erased DownloadItems
. If no items matching the query parameter could be found, the array will be empty. If the call failed, the promise will be rejected with an error message.
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
erase |
Yes |
79 |
48 |
? |
Yes |
No |
? |
? |
48-79 |
? |
? |
? |
Erase the most recent download:
function onErased(ids) { console.log(`Erased: ${ids}`); } function onError(error) { console.log(`Error erasing item: ${error}`); } var erasing = browser.downloads.erase({ limit: 1, orderBy: ["-startTime"] }); erasing.then(onErased, onError);
Erase everything:
function onErased(ids) { console.log(`Erased: ${ids}`); } function onError(error) { console.log(`Error erasing item: ${error}`); } var erasing = browser.downloads.erase({}); erasing.then(onErased, onError);
Note: This API is based on Chromium's chrome.downloads
API.
Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/downloads/erase