javascript - Creating multiple sessions with each new tab with chrome extension -
i'm trying create new session each new opened tab. if call "chrome.tabs.create" , hit same url create new session. example if hit 1 page , use cookies store cart when call "chrome.tabs.create" second time retrieves previous session , both tabs same thing. there way this?
no, not really, not extension.
you can open incognito tab, gives second session, can't open "another" incognito context until close first one.
a chrome app can use webviews different partitions effect, cannot interact normal browsing.
webview not yet available extensions , it's unclear when change.
if need badly can try manipulating cookies chrome.cookies
api.
Comments
Post a Comment