-
Notifications
You must be signed in to change notification settings - Fork 519
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Keep cookies/logins [solved: add Cookie + Site Data Exceptions] #1278
Comments
all cookies are session only now: so you need to add exceptions for those sites you want: e.g. to auto-login you add them to exceptions in Lines 868 to 875 in 4b393b9
|
unless you want to keep ALL cookies, this is way better for sanitizing (so you're not re-IDed in subsequent sessions by state tracking) if you do want to keep ALL cookies, just flip the lifetimePolicy pref to |
I already tried adding sites to the allow list but it still deletes them. |
|
in arkenfox v96 we're going to be switching from FPI to dFPI, so you might as well keep the existing ones to save doing them again (dFPI can't use the FPI syntax - yet, and certainly not in v96) or
|
Thanks a lot! |
see #1281 |
Hallo! Sorry if this has been asked elsewhere: Are the site data exceptions set via the Firefox UI something that would be affected by |
backup and test ;) siteSettings = permissions¹, content preferences (zoom, ...?), dom push notifications, security settings (hsts, ...?), cert exceptions ¹ "site exceptions" are permissions |
True! Just am not able at the moment and was impatient to learn. ;-) So thanks for the clarification! Oh, and by the way:
Thist is the reason why I have presently set the mentioned userPref to |
HSTS is stored in Why do you want to clear HSTS? |
HSTS is isolated by first party with FPI What are you trying to achieve by clearing HSTS? |
Hi! Thank you for the clarification. Clearing HSTS is based on these considerations: How to prevent HSTS tracking in Firefox and solution 2. presented therein. But the article is from 2015, and I never investigated if in the meantime more appropriate solutions could be applied (which seems the case through FPI, if I understand Thorin-Oakenpants correctly). |
If you use https_only_mode (default in the arkenfox user.hs), the HSTS tracking described in https://arstechnica.com/information-technology/2015/01/browsing-in-privacy-mode-super-cookies-can-track-you-anyway/ is limited to sites where you added an exception (i.e. site you load via http). All other sites will get a white id. |
^^ I was just about to post that.
FPI/dFPI removes the cross-domain aspect. And most sites are already HTTPS... and I didn't get as far as looking into HTTPS-only mode and what all of that means |
Is there a way to keep cookies on V94? On previous versions I changed
user_pref("privacy.clearOnShutdown.cookies", true)
to false and I could keep cookies for specific sites using CookieAutoDelete. As of V94, this setting is false by default and I can't seem to find a way to keep cookies for specific sites.The text was updated successfully, but these errors were encountered: