4

Is it possible to run chrome without checking SameSite attribute even if the server set it

Set-Cookie: key=value; SameSite=Strict

I did not find any flag

CruorVult
  • 823
  • 1
  • 9
  • 17

3 Answers3

7

Applicable for Chrome version 84 and above

  1. Go to chrome://flags/
  2. Filter with "SameSite"
  3. Disable all 3 flags
  4. Refresh browser

enter image description here

Reference: https://www.chromium.org/updates/same-site/test-debug

Vaibhav Bhalla
  • 971
  • 8
  • 8
0

From what i have read up about it, i don't believe its normally best practise to do this.

however you might find you answer on Here

Adam
  • 19
  • 1
  • 8
  • It needs only for testing. For example chrome has flag to disable origin policy(--disable-web-security), and I expected it to has the same for site policy – CruorVult Nov 25 '19 at 12:41
-1

You can disable them through chrome://flags Cookie Deprecation messages disabled.

Look at this screenshot

your website visitors can still see it. However I don't think you should disable it. rather fix the problem. if you are a developer/owner for the site.

Hopefully this helps.

Adam
  • 19
  • 1
  • 8
  • Thank you for helping, but this flag disable only warning, but does not change browser behaviour. About backend solution, it is not secured to disable SameSite in public assembly. We can disable Same site in test assembly, but there are another specific to us cases, which this solution can't resolve. – CruorVult Nov 27 '19 at 10:46