browsingData.RemovalOptions
type contains options to control certain aspects of browsing data removal.
Values of this type are objects. They contain the following properties:
cookieStoreId
可选
string
. This property only applies to cookies and indexedDB items. The removal is limited to items belonging to a specific
cookie store
as specified by the ID.
注意:
On Firefox Nightly removal of localStorage items by
cookieStoreId
is also supported.
hostnames
可选
数组
of
string
. This property only applies to cookies and local storage items. Only remove cookies and local storage items which are associated with these hostnames.
You must pass in just a hostname here, without protocol (for example: "google.com" not https://google.com"). You can use the
URL
interface to parse a raw URL and retrieve just the hostname. Items associated with subdomains of a given hostname will
not
be removed: you must explicitly list subdomains.
originTypes
可选
对象
. Used to control whether to remove data only from normal web pages, or also from hosted web apps and extensions. If this option is omitted, only data from normal web pages ("
unprotectedWeb
") is removed. Before removing data from web apps or extensions, be very careful to ensure that this is really what the user wants.
This object may contain any of the following properties:
unprotectedWeb
可选
boolean
. If present and
true
, remove data from normal web pages.
protectedWeb
可选
boolean
. If present and
true
, remove data from websites that have been installed as hosted apps.
extension
可选
boolean
. If present and
true
, remove data from extensions.
since
可选
编号
. How far back in time to remove data, given in
milliseconds since the UNIX epoch
. Note that when removing the browser cache, the entire cache is always removed and this option is ignored. If the
since
property is omitted, it defaults to 0, which means "forever".
BCD tables only load in the browser
注意:
This API is based on Chromium's
chrome.browsingData
API。
最后修改: , 由 MDN 贡献者