How set cookies in dev tools in Google Chrome 98 version?

Viewed 12640

after update google chrome up to 98 version, I can't set cookiesenter image description here

it looks like a red stripe and after the refresh, it disappears. Even you fill all fields, it disappears.

Maybe any know how it disables the feature? This feature describes in their blog, but I can't find how to fix it

3 Answers

A workaround we are using for now is using the console to run document.cookie='key=value'.

It's not nearly as robust but it gets the cookie in and we can edit the other fields afterwards.

Using a plugin like 'EditThisCookie' also works for now.

screen shot of cookie editor

Related