I am working with a third party js script. The third party script sets cookies, but doesn't set them to samesite=none and secure. This is problematic because a call is later made to this third party. and i get "Issues" in the chrome developer panel that says Indicate whether to send a cookie in a cross-site request by specifying its SameSite attribute. It tells me i have 18 cookies that were filtered out of each request because the sameSite attribute was defaulted to Lax.
Question: Is there anyway to update all cookies under a given domain and set their attribute of sameSite to be None?