Third party cookies usage in service_worker requests
121 views
Skip to first unread message
Uğur
unread,
Apr 7, 2025, 2:07:43 PMApr 7
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Chromium Extensions
We have an extension where when we make requests in service_worker the browser cookies sent through the requests by default. so our backend was dependent on one of the browser cookies (our web app sets that cookie).
But some of our users has turned on "Block third party cookies smth." setting which service_worker requests doesn't include our web app cookie anymore.
What's the best way to solve this? adding "cookies" in permissions and use that api?