Hi, I'd like to have clarifications on how partitioned cookies will affect chrome extensions.
For example, previously if my extension has host permission for
domain.com, when sending request from my extension to
domain.com, the cookies set on
domain.com will be sent along. However, now if the cookies are set partitioned to
domain.com, those cookies will not be sent anymore.
One example is Cloudflare cf_clearance cookie, I think they recently enabled cookie partitioning, which breaks my extension because lack of cf_clearance cookie requests will result in 403 error.
PS: my extension doesn't have `cookies` permission and I prefer not to request it because it's very sensitive to users.