I tried to lookup many answers from stackoverflow but couldnt find anything specific to this, I am implementing payment app and I want to display custom-tab in my app to record user visit by storing user-id, either by setting a cookie or using localstorage or by installing a service worker for the domain that custom tabs opens.
- Can a https page loaded in custom-tab write cookies that are also available when visiting the same page from Chrome?
- Is localstorage API available for my domain in custom-tab? if yes, is stored value available from Chrome?
- Is installing service worker allowed from Custom-tab? So I have access to S/W from Chrome browser?
If none of this possible, how could I record the visit from custom-tab and have it available in Chrome when user opens the domain from chrome browser?
Thanks in advance