Clears any 本地存储 created by websites.
可以使用
removalOptions
parameter, which is a
browsingData.RemovalOptions
object, to:
This is an asynchronous function that returns a
Promise
.
var removing = browser.browsingData.removeLocalStorage(
removalOptions
// RemovalOptions object
)
removalOptions
对象
。
browsingData.RemovalOptions
object, which may be used to clear only local storage objects created by normal web pages or to clear objects created by 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.
BCD tables only load in the browser
Remove all local storage:
function onRemoved() {
console.log("removed");
}
function onError(error) {
console.error(error);
}
browser.browsingData.removeLocalStorage({}).
then(onRemoved, onError);
注意:
This API is based on Chromium's
chrome.browsingData
API。
最后修改: , 由 MDN 贡献者