FoxyProxy

Easy to use advanced Proxy Management tool for everyone

¿Qué es FoxyProxy?

FoxyProxy es una extensión de Chrome desarrollada por https://getfoxyproxy.org, y su función principal es "Easy to use advanced Proxy Management tool for everyone".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión FoxyProxy

Descarga archivos de extensión FoxyProxy en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        FoxyProxy is an open-source, advanced proxy management tool that completely replaces Chrome's limited proxying capabilities. No paid accounts are necessary; bring your own proxies or buy from any vendor. The original proxy tool, since 2006. FoxyProxy has been owned and developed consistently by the same team since 2006. It has never been sold and never will.

WHAT IS IT?
FoxyProxy is a Chrome and Firefox extension which switches an internet connection across one or more proxy servers:

1. by point-and-click of colored icons
2. by URL (define URL patterns with wildcards or regular expressions)
3. by browser tab - set individual proxies per tab: assign up to 4 proxy servers for use on 4 different tabs.

FoxyProxy automates the manual process of editing your browser's proxy settings.

* Customize colors and country flags to make it easy to see which proxy is in use
* Proxy per tab, by URL, or by point-and-click of colored icons
* Import/Export all of your settings, or just URL patterns, to share with others (fixed in 8.0 and above)
* Select a proxy specifically to use in Incognito Mode
* Keyboard shortcuts
* Globally exclude any domain from proxying
* Create patterns with wildcards or regular expressions. A pattern tester is included.
* (optional) Automatically synchronize all of your proxy settings with your other Chrome instances when you use Sync.
* Turn WebRTC on/off to further limit discovery of your IP address
* Built-in predefined selections for tor, privoxy, and psiphon
* Extensive built-in help


Source code is at https://github.com/foxyproxy/browser-extension

FoxyProxy has been owned and developed consistently by the same team since 2006. It has never been sold and never will.

PERMISSIONS

* 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.

* proxy: The core function of the extension is to allow users to set the proxy server used by the browser.

* storage: Required to store proxy server settings (hostname, port, username, and which proxy 
server is enabled by the user).

* 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.
webRequest: Required to authenticate with proxy servers via webRequest.onAuthRequired
webRequestAuthProvider: Required to authenticate with proxies servers via webRequest.onAuthRequired

* browsingData: Required so the extension can delete cookies, indexedDB, and localStorage when requested by the user on the Options page (Delete Browsing Data button)
privacy: Required so the extension can call browser.privacy.network.webRTCIPHandlingPolicy to turn on/off webRTC in Chrome (Limit WebRTC checkbox in Options page)

* host permission: Required to proxy all webRequests and provide proxy server authentication.  is used because users may choose to load any/all URLs through proxy servers (chrome.webRequest.onAuthRequired and chrome.webRequest.onAuthRequired.addListener) . Required to proxy all webRequests and provide proxy server authentication. Also needed to get accounts details from FoxyProxy servers, if requested by the user with the Import FoxyProxy Account on the Import tab.

** No remote code is used in this extension. **

* Why is there a crypto javascript library in the extension?

This crypto library is needed to migrate encrypted settings from version 3.x to version 8.x. It is not used to encrypt anything; only to decrypt old data when upgrading from version 3.x -> 8.x.                    

Información Básica de la Extensión

Nombre FoxyProxy FoxyProxy
ID gcknhkkoolaabfmlnjonogaaifnjlfnp
URL Oficial https://chromewebstore.google.com/detail/foxyproxy/gcknhkkoolaabfmlnjonogaaifnjlfnp
Descripción Easy to use advanced Proxy Management tool for everyone
Tamaño del Archivo 214 KB
Cantidad de Instalaciones 342,641
Versión Actual 8.9
Última Actualización 2024-02-11
Fecha de Publicación 2015-01-03
Calificación 3.82/5 Total de 756 Calificaciones
Desarrollador https://getfoxyproxy.org
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión http://getfoxyproxy.org/
URL de la Página de Ayuda https://getfoxyproxy.org/contact/
URL de la Página de Política de Privacidad https://getfoxyproxy.org/privacy-policy
Idiomas Soportados de,en,fr,es,pl,pt-BR,ru,uk,fa,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "description": "__MSG_extensionDescription__",
    "version": "8.9",
    "default_locale": "en",
    "homepage_url": "https:\/\/getfoxyproxy.org\/",
    "author": "Eric Jung",
    "icons": {
        "16": "image\/icon.png",
        "32": "image\/icon32.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "background": {
        "service_worker": "content\/background.js",
        "type": "module"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "content\/options.html"
    },
    "action": {
        "default_icon": {
            "16": "image\/icon.png",
            "32": "image\/icon32.png"
        },
        "default_popup": "content\/popup.html",
        "default_title": "__MSG_extensionName__"
    },
    "permissions": [
        "downloads",
        "notifications",
        "proxy",
        "storage",
        "tabs",
        "webRequest",
        "webRequestAuthProvider"
    ],
    "optional_permissions": [
        "browsingData",
        "privacy"
    ],
    "host_permissions": [
        ""
    ],
    "commands": {
        "proxyByPatterns": {
            "description": "__MSG_proxyByPatterns__"
        },
        "disable": {
            "description": "__MSG_disable__"
        },
        "setProxy": {
            "description": "__MSG_setProxy__"
        },
        "quickAdd": {
            "description": "__MSG_quickAdd__"
        },
        "excludeHost": {
            "description": "__MSG_excludeHost__"
        },
        "setTabProxy": {
            "description": "__MSG_setTabProxy__"
        },
        "unsetTabProxy": {
            "description": "__MSG_unsetTabProxy__"
        }
    },
    "storage": {
        "managed_schema": "content\/schema.json"
    },
    "minimum_chrome_version": "108"
}