history.deleteAll()

Deletes all visits from the browser's history.

This function triggers history.onVisitRemoved just once, with allHistory set to true and an empty urls argument.

This is an asynchronous function that returns a Promise.

Syntax

var deletingAll = browser.history.deleteAll()

Parameters

None.

Return value

A Promise. The promise will be fulfilled with no parameters when all history has been deleted.

Browser compatibility

ChromeEdgeFirefoxFirefox for AndroidOpera
Basic supportYesNo49NoYes

Examples

Delete all history when the user clicks a browser action:

function onDeleteAll() {
  console.log("Deleted all history");
}
function deleteAllHistory() {
  var deletingAll = browser.history.deleteAll();
  deletingAll.then(onDeleteAll);
}
deleteAllHistory();

Acknowledgements

This API is based on Chromium's chrome.history API. This documentation is derived from history.json in the Chromium code.

Microsoft Edge compatibility data is supplied by Microsoft Corporation and is included here under the Creative Commons Attribution 3.0 United States License.

Document Tags and Contributors

 Contributors to this page: wbamberg, Makyen
 Last updated by: wbamberg,