[OTHER] Free VPN available since FF v. 149 - possible to enable but does not function #284
Labels
No labels
bug
confirmed
contribution welcome
duplicate
enhancement
good first issue
help wanted
important
invalid
other
question
upstream
web compat
wontfix
No milestone
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
celenity/Phoenix#284
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Please explain your inquiry.
Looking with interest in #276, and specifically visiting https://itsfoss.com/news/firefox-ships-brave-adblock-engine/, a second possibly exciting feature starting with FF v. 149 was also mentioned; a free VPN!
More information is available from Mozilla here: vpn info
It is apparently being rolled out in specific regions already, but I found in my case, I had to enable it by setting
browser.ipProtection.enabledtotrue. Then inSettings --> Privacy & Securitya VPN panel appears with aGet startedbutton, but nothing happens when it is clicked. Manually enabling it to date may not be sufficient to use it if done in a non-activated region. Or isphoenixat play here?While I've no idea the privacy (or security) implications that may arise (if any) by using a free VPN offered by Mozilla, I simply make a suggestion to, if appropriate, allow users to access it alongside
phoenix(and also to bring some attention to it since v. 150 is already out and there has been no noise about this)./// Disable IP Protection (Mozilla VPN) [NO-ANDROID] [NO-MAIL]// This is a paid Mozilla service, so it doesn't make sense for us to leave this enabled by default [NO-ANDROID] [NO-MAIL]// If people really do want to use it, they can though - they'll just need to enable it themselves manually [NO-ANDROID] [NO-MAIL]// https://vpn.mozilla.org/ [NO-ANDROID] [NO-MAIL]// https://searchfox.org/firefox-main/source/browser/components/ipprotection/docs/Preferences.rst [NO-ANDROID] [NO-MAIL]pref("browser.ipProtection.added", true); // [NO-ANDROID] [NO-MAIL] Prevent pinning the IP Protection widget in the navigation bar https://searchfox.org/firefox-main/rev/82e2435f/browser/components/ipprotection/IPProtection.sys.mjs#145pref("browser.ipProtection.autoStartEnabled", false); // [NO-ANDROID] [NO-MAIL] [DEFAULT]pref("browser.ipProtection.autoStartPrivateEnabled", false); // [NO-ANDROID] [NO-MAIL] [DEFAULT]pref("browser.ipProtection.enabled", false); // [NO-ANDROID] [NO-MAIL] [DEFAULT]pref("browser.ipProtection.features.autoStart", false); // [NO-ANDROID] [NO-MAIL] [DEFAULT]pref("browser.ipProtection.features.siteExceptions", true); // [NO-ANDROID] [NO-MAIL] [DEFAULT] If IP Protection is enabled, enable support for site exceptions https://searchfox.org/firefox-main/rev/aee7c0f2/browser/app/profile/firefox.js#3547pref("browser.ipProtection.optedOut", true); // [NO-ANDROID] [NO-MAIL]pref("browser.ipProtection.userEnabled", false); // [NO-ANDROID] [NO-MAIL] [DEFAULT]as per comment, some more of these would have to be flipped to firefox default. imho the reasoning (= keep it off) stays the same, difference is just
paid->free(trial?).also if it's actually region-specific - phoenix overrides the browser region to a dummy one ("XX") for telemetry reasons.
From the Mozilla link: Unlike Mozilla VPN, which protects your entire device, the built-in VPN only masks traffic that originates in Firefox. It's free to use and doesn’t require a subscription. (with a monthly data limit of 50 GB).
Apologies for the late response @GW72 - I finally got around to taking a look at this. I decided to go ahead and enable support for it for next release, since AFAICT there aren't any privacy or security concerns, and, like you said, it's a free service independent of Mozilla VPN. I also figured out why it wasn't working (Was a strange bug due to us not pinning it to the toolbar by default, but I took care of that as well - by default it'll be in the overflow menu).
So thanks for filing this!
@celenity thanks for taking the time to look! Much appreciated.