Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/browsingdata/removedownloads/index.md
6567 views
------{{AddonSidebar()}}
Clears the browser's download history. Note that this does not delete the downloaded objects themselves, only records of downloads in the browser's history.
You can use the removalOptions parameter, which is a {{WebExtAPIRef("browsingData.RemovalOptions")}} object, to:
clear records of items downloaded after a given time
control whether to clear only records of items downloaded from normal web pages or to clear records from hosted apps and extensions as well.
This is an asynchronous function that returns a Promise.
Syntax
Parameters
removalOptions:
object. A {{WebExtAPIRef("browsingData.RemovalOptions")}} object, which may be used to clear only records created after a given time, and whether to clear only records of items downloaded from normal web pages or to clear records from hosted apps and extensions as well.
Return value
A Promise that will be fulfilled with no arguments when the removal has finished. If any error occurs, the promise will be rejected with an error message.
Examples
Remove records of objects downloaded in the last week:
Remove all records of downloaded objects:
Browser compatibility
{{Compat}}
{{WebExtExamples}}
Note: This API is based on Chromium's
chrome.browsingDataAPI.