ExtendableCookieChangeEvent: changed property
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.
Note: This feature is only available inService Workers.
Thechanged read-only property of theExtendableCookieChangeEvent interface returns any cookies that have been changed by the givenExtendableCookieChangeEvent instance.
In this article
Value
An array of objects containing the changed cookie(s). Each object contains the following properties:
nameA string containing the name of the cookie.
valueA string containing the value of the cookie.
domainA string containing the domain of the cookie.
pathA string containing the path of the cookie.
expiresA timestamp, given asUnix time in milliseconds, containing the expiration date of the cookie.
secureA
booleanindicating whether the cookie is used only in a secure context (HTTPS rather than HTTP).sameSiteOne of the following
SameSitevalues:"strict"Cookies will only be sent in a first-party context and not be sent with requests initiated by third party websites.
"lax"Cookies are not sent on normal cross-site subrequests (for example to load images or frames into a third party site), but are sent when a user is navigating within the origin site (i.e., when following a link).
"none"Cookies will be sent in all contexts.
partitionedA boolean indicating whether the cookie is a partitioned cookie (
true) or not (false). SeeCookies Having Independent Partitioned State (CHIPS) for more information.
Examples
In this example when the cookie is set, the event listener logs thechanged property to the console. The first item in that array contains an object representing the cookie that has just been set.
self.addEventListener("cookiechange", (event) => { console.log(event.changed[0]);});const oneDay = 24 * 60 * 60 * 1000;cookieStore.set({ name: "cookie1", value: "cookie1-value", expires: Date.now() + oneDay, domain: "example.com",});Specifications
| Specification |
|---|
| Cookie Store API> # dom-extendablecookiechangeevent-changed> |