You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If GM_cookie is granted, then by default, cookies stored by the browser application are added for same originGM_xmlhttpRequest requests.
If the cookie property of details is found in the request GM_xmlhttpRequest(details),
then it will be turned into an array of Set-Cookie headers to be passed to HttpCookie.parse. ChromeXt will then call CookieStore.add, and finally send the resulted cookies.
If the anonymous property of details is set to true, then for current request no cookies will be sent by ChromeXt, and response cookies are ignored.
With GM_cookie granted, the UserScript can and only can change the cookie store in the browser of current origin. No third party cookies can be saved into the browser by a UserScript. This design is due to the privacy protection of users.
Cookies during GM_xmlhttpRequest are managed internally in each session of browser. They will be reset when the browser is restarted.
The text was updated successfully, but these errors were encountered:
Here is the current design of the
GM_cookie
APIGM_cookie
is granted, then by default, cookies stored by the browser application are added for same originGM_xmlhttpRequest
requests.cookie
property ofdetails
is found in the requestGM_xmlhttpRequest(details)
,then it will be turned into an array of
Set-Cookie
headers to be passed to HttpCookie.parse.ChromeXt
will then call CookieStore.add, and finally send the resulted cookies.anonymous
property ofdetails
is set totrue
, then for current request no cookies will be sent byChromeXt
, and response cookies are ignored.GM_cookie
granted, the UserScript can and only can change the cookie store in the browser of current origin. No third party cookies can be saved into the browser by a UserScript. This design is due to the privacy protection of users.GM_xmlhttpRequest
are managed internally in each session of browser. They will be reset when the browser is restarted.The text was updated successfully, but these errors were encountered: