Go to file
erosman feefecee81
Add files via upload
2023-12-09 10:53:57 +03:30
screenshots screenshot maintenance 2023-11-28 08:59:14 -07:00
src Add files via upload 2023-12-09 10:53:57 +03:30
Gruntfile.js remove unneeded deletes from grunt built 2023-11-28 18:01:38 -07:00
LICENSE Initial commit 2022-08-26 09:50:15 -06:00
README.md Update README.md 2023-12-09 00:34:42 +03:30
package-lock.json fix duplicate keys in fr and zh_CN locales; update README with minor changes; create gruntfile and node/npm/grunt project for easy zipping on any platform and ignoring unneeded files and directories 2023-09-24 16:22:08 -06:00
package.json remove unneeded deletes from grunt built 2023-11-28 18:01:38 -07:00

README.md

FoxyProxy FoxyProxy Browser Extension

license GitHub repo size

About | Help | Issues

After some years of stability, FoxyProxy has been updated to support Manifest Version 3 which is required by Chrome in order for extensions to be compatible with Chrome in 2024. We took advantage of this forced update to implement many feature requests and other changes that were requested over the years.

FoxyProxy has been owned and developed consistently by the same team since 2006.

The repository has the source code for version 8.0+ for Firefox, Chrome, and other Chromium-based browsers like Chromium, Brave and Edge. Source code for older versions.

Permissions Justification

These justifications were provied to Google and Mozilla

  1. downloads: Required to export the extension settings to a file. Users can import that file to other Chrome/Firefox instances, or share it with colleagues, in order to keep the same settings. It can also be backed up and used later.
  2. proxy: The core function of the extension is to allow users to set the proxy server used by the browser.
  3. storage: Required to store proxy server settings (hostname, port, username, and which proxy server is enabled by the user).
  4. tabs: Required so that users can set separate proxies to use per tab. It is also needed for "QuickAdd" to quickly add a URL pattern that applies to the current/active tab. It is also used to open a URL to getfoxyproxy.org where there is online help.
  5. webRequest: Required to authenticate with proxy servers via webRequest.onAuthRequired
  6. webRequestAuthProvider: Required to authenticate with proxies servers via webRequest.onAuthRequired
  7. browsingData: Required so the extension can delete cookies, indexedDB, and localStorage when requested by the user on the Options page (Delete Browsing Data button)
  8. privacy: Required so the extension can call browser.privacy.network.webRTCIPHandlingPolicy to turn on/off webRTC in Chrome (Limit WebRTC checkbox in Options page)
  9. host permission: "<all_urls>" permissions is required in order to supply credentials for Proxy authorization

No remote code is used in this extension.

Why is there a crypto library in lib?

The crypto library was already incldued in FoxyProxy 3.x to encrypt user credentails. It is needed to migrate encrypted settings from the old version (which had no updates for many years, as you mentioned) to 2023. It is not used to encrypt anything; only to decrypt old data when upgrading from version 3.x -> 8.x.

Screenshots

Dark Theme

Light Theme

Releases

Chrome Firefox
Standard

Basic

Source Code Beta
Source Code Release 8.1
Source Code Old 3.0.7.1 7.5.1

Browser Minimum

Chrome Firefox Firefox for Android
version 108
(released 2022-11-29)
version 93
(released 2021-10-05)
version 113 (manifest)
(API minimum 102)

Installation Guide (for testing)

  • Backup your FoxyProxy settings

  • Download repo (or use git)

    • browser-extension (this page) -> Code (green button) -> Download ZIP
    • Unzip the downloaded file
  • Chrome

    • Rename manifest-chrome.json in src folder to manifest.json
    • Go to chrome://extensions/
    • Enable Developer Mode (top right)
    • Click "Load Unpacked"
    • Select above manifest.json (or src folder)
  • Firefox (Nightly/Beta/Developer Edition)

    • Rename manifest-firefox.json in src folder to manifest.json
    • Go to about:debugging#/runtime/this-firefox
    • Click "Load Temporary Add-on..."
    • Select above manifest.json
  • Firefox for Android
    You can try installing FoxyProxy Basic v8.*

Building for Distribution

With grunt:

  1. Install grunt locally:

npm i -D grunt-cli

  1. Run one of:

grunt --target=chrome-standard
grunt --target=chrome-basic
grunt --target=firefox-standard
grunt --target=firefox-basic

The target is built in foxyproxy-XXX-YYY.zip; e.g. foxyproxy-chrome-standard.zip.

Without grunt:

  • copy the appropriate manifest-xxx.json file to manifest.json; e.g. mv manifest-chrome.json manifest.json
  • zip the src directory into the top of an archive. The src/ directory should not be in the zip archive.