Clears data that the browser has saved for autofilling forms.
You can use the removalOptions parameter, which is a browsingData.RemovalOptions object, to:
This is an asynchronous function that returns a Promise.
var removing = browser.browsingData.removeFormData( removalOptions // RemovalOptions object )
removalOptionsobject. A browsingData.RemovalOptions object, which may be used to clear only form data entered after a given time, and whether to clear only form data entered in normal web pages or to clear data entered in hosted apps and extensions as well.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.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
removeFormData |
Yes |
79 |
53 |
? |
Yes |
No |
? |
? |
57-79 |
? |
? |
? |
Remove form data saved in the last week:
function onRemoved() { console.log("removed"); } function onError(error) { console.error(error); } function weekInMilliseconds() { return 1000 * 60 * 60 * 24 * 7; } var oneWeekAgo = (new Date()).getTime() - weekInMilliseconds(); browser.browsingData.removeFormData( {since: oneWeekAgo}). then(onRemoved, onError);
Remove all saved form data:
function onRemoved() { console.log("removed"); } function onError(error) { console.error(error); } browser.browsingData.removeFormData({}). then(onRemoved, onError);
Note: This API is based on Chromium's chrome.browsingData 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/browsingData/removeFormData