Home > OS >  How set cookies in dev tools in Google Chrome 98 version?
How set cookies in dev tools in Google Chrome 98 version?

Time:02-08

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

CodePudding user response:

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.

CodePudding user response:

document.cookie='key=value' if the key with '_', this will not work.

  •  Tags:  
  • Related