--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.
Yes, allowing extensions in incognito mode does not affect the normal mode.Perhaps this page contains some relevant information -Sorry, I am not so sure I completely understand the issue at hand...Also, what are "DevPanels"? You mean the Chrome Developer Tools (generally shortened to "DevTools")?
How do you make that AJAX request? From a content script? From an extension tab? From the background page?
☆PhistucK
On Thu, May 18, 2017 at 9:02 AM, Виталий Хатламаджиян <vita...@gmail.com> wrote:
Session cookies created in chrome.browserAction.onClicked handler only. I don't use old cookies.If I open the Chrome browser initially in incognito mode (not switch from normal mode) with my extension already allowed for incognito mode, the cookies are again different.I have an extension for Chrome that makes ajax request to my site. The site uses sessions.There is a similar thread, but...
So, in response of the ajax request to the site, the Set-Cookie header is returned with some session identifier and a this entry appears in the cookie section of the extension DevPanel (of the backgroud page).
But, session id in the DevPanel browser for the site is a completely different.
Extension is allowed for incognito mode.
In normal mode, the cookies are identical in the DevPanels of the extension and the browser.
I understand that cookies for normal and incognito modes should be different, but why are these values different for the extension allowed for incognito mode?
Am I right and extensions allowed for incognito mode, work in normal mode?
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discu...@chromium.org.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.
You have not answered my question. What makes the AJAX request? A background page? A content script? An extension tab?
Are you using the "split" mode or the "spanning" mode?
How is this session ID created? The server generates it when the browser does not send it a cookie and from there on, as long as the browsers sends the same cookie, a session ID is not generated but instead reused. Is that correct?
☆PhistucK
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discu...@chromium.org.
The background page make an ajax request, get a session id and redirect to the site. Now the site have to get the generated session id, but it doesn't exist and a new session id is generated.