privacyguides.org/collections/_evergreen/browsers.md

55 lines
2.1 KiB
Markdown
Raw Normal View History

2020-05-12 19:05:51 +00:00
---
layout: evergreen
title: Browser Recommendations
description: |
These are our current web browser recommendations and settings. We recommend keeping extensions to a minimum: they have privileged access within your browser, require you to trust the developer, can make you [stand out](https://en.wikipedia.org/wiki/Device_fingerprint#Browser_fingerprint), and [weaken](https://groups.google.com/a/chromium.org/g/chromium-extensions/c/0ei-UCHNm34/m/lDaXwQhzBAAJ) site isolation.
2020-05-12 19:05:51 +00:00
---
## General Recommendations
2021-05-03 18:09:01 +00:00
{% for item_hash in site.data.software.browsers %}
{% assign item = item_hash[1] %}
2020-05-12 19:05:51 +00:00
2021-05-03 18:09:01 +00:00
{% if item.type == "Recommendation" %}
{% include recommendation-card.html %}
2021-05-03 18:09:01 +00:00
{% endif %}
2020-05-12 19:05:51 +00:00
{% endfor %}
2020-05-13 03:37:59 +00:00
## Desktop Browser Recommendations
2020-05-13 03:37:59 +00:00
{% for item_hash in site.data.software.browsers-desktop %}
2021-05-03 18:09:01 +00:00
{% assign item = item_hash[1] %}
{% if item.type == "Recommendation" %}
{% include recommendation-card.html %}
2021-05-03 18:09:01 +00:00
{% endif %}
{% endfor %}
## Mobile Browser Recommendations
2020-05-13 03:37:59 +00:00
On Android, Mozilla's engine [GeckoView](https://mozilla.github.io/geckoview/) has yet to support [site isolation](https://hacks.mozilla.org/2021/05/introducing-firefox-new-site-isolation-security-architecture) or enable [isolatedProcess](https://bugzilla.mozilla.org/show_bug.cgi?id=1565196). Firefox on Android also doesn't yet have [HTTPS-Only mode](https://github.com/mozilla-mobile/fenix/issues/16952#issuecomment-907960218) built-in. We do not recommend Firefox or any Gecko based browsers at this time.
On iOS all web browsers use the [WebKit](https://en.wikipedia.org/wiki/WebKit) browser engine, including Firefox. However, Firefox includes a few extra features like Tracking Protection and the ability to add search engines.
{% for item_hash in site.data.software.browsers-mobile %}
2021-05-03 18:09:01 +00:00
{% assign item = item_hash[1] %}
{% if item.type == "Recommendation" %}
{% include recommendation-card.html %}
2021-05-03 18:09:01 +00:00
{% endif %}
{% endfor %}
2020-12-04 08:35:10 +00:00
## Additional Resources
2020-12-04 08:35:10 +00:00
{% for item_hash in site.data.software.browsers-resources %}
{% assign item = item_hash[1] %}
2020-12-04 08:35:10 +00:00
{% if item.type == "Recommendation" %}
{% include recommendation-card.html %}
{% endif %}
2020-12-04 08:35:10 +00:00
{% endfor %}