Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

cookies.OnChangedCause

The OnChangedCause type of the cookies API represents the reason a cookie changed.

Type

Values of this type are strings. Possible values are:

evicted
A cookie has been automatically removed due to garbage collection.
expired
A cookie has been automatically removed due to expiry.
explicit
A cookie has been inserted or removed via an explicit call to cookies.remove().
expired_overwrite
A cookie has been overwritten by a cookie with an already-expired expiration date.
overwrite
A call to cookies.set() overwrote this cookie with a different one.

Browser compatibility

Chrome Edge Firefox Firefox for Android Opera
Basic Support Yes No 45.0 48.0 33

Examples

You can listen to the cookies.onChanged event to be notified when cookies change. The listener is passed a changeInfo object that contains a cause property, whose value is the OnChangeCaused string:

chrome.cookies.onChanged.addListener(function(changeInfo) {
  console.log('Cookie changed: ' +
              '\n * Cookie: ' + JSON.stringify(changeInfo.cookie) +
              '\n * Cause: ' + changeInfo.cause +
              '\n * Removed: ' + changeInfo.removed);
});

Acknowledgements

This API is based on Chromium's chrome.cookies API. This documentation is derived from cookies.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, chrisdavidmills
 Last updated by: wbamberg,