SmartProxy

Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.

Co je SmartProxy?

SmartProxy je rozšíření Chrome vyvinuté Salar K, a jeho hlavní funkcí je „Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření SmartProxy

Stáhněte si soubory rozšíření SmartProxy ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        What is SmartProxy
Using proxies cannot be easier with SmartProxy. Think of it as configure once and forget solution. With SmartProxy you don't need to change your proxy manually or turn it on and off. All you have to do is to tell SmartProxy that you want to enable proxy for your desired website with just one click. After that, when you visit that specific website, SmartProxy will act and all you data for that website will be transferred though the proxy, without you doing anything.

Please note that:
🚫 SmartProxy does not provide any type of proxy servers.
👀 SmartProxy does not track you in any way.
⭐️ SmartProxy is completely ad free in any way.

SmartProxy
It uses patterns to automatically define rules to proxify your web experience. With SmartProxy, you don't need to change your proxy manually and turn it on and off. You can add your desired website to the proxy rules list with just one click. After that, when you visit that specific website, SmartProxy will act and all you data for that website will be transferred though the proxy, without you doing anything.

What's more, SmartProxy is inspired by AutoProxy and AutoProxy-ng and that are now considered legacy. SmartProxy is completely written from ground up using WebExtensions and provides more functionality than those proxies.

Highlights

    Automatically detect when to enable or disable proxy to certain websites based on rule patterns
    Easily switch between many proxy servers as your active proxy server setting
    Easily with one click add current site to your proxy list
    View current website items and requests and decide whether to proxify them with one click
    Easily switch between proxy modes and enable proxy for all domains
    Proxy API is supported through subscriptions
    Backup/Restore settings and rules

Disclaimer: This extension is solely created to spread freedom by easing the access to blocked contents. Any misuse like gaining access to harmful or graphic content and etc. is discouraged.

Copyright (C) all rights are reserved.
License: GPL-3.0                    

Základní Informace o Rozšíření

Název SmartProxy SmartProxy
ID jogcnplbkgkfdakgdenhlpcfhjioidoj
Oficiální URL https://chromewebstore.google.com/detail/smartproxy/jogcnplbkgkfdakgdenhlpcfhjioidoj
Popis Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.
Velikost souboru 978 KB
Počet instalací 22,941
Aktuální Verze 1.3.1
Poslední Aktualizace 2023-07-20
Datum Vydání 2020-05-23
Hodnocení 4.44/5 Celkem 115 Hodnocení
Vývojář Salar K
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/salarcode/SmartProxy
URL Stránky Nápovědy https://github.com/salarcode/SmartProxy/issues
URL Stránky Zásad Ochrany Soukromí https://github.com/salarcode/SmartProxy/wiki/Privacy
Podporované Jazyky en,tr,es,ru,fa,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extensionName__",
    "version": "1.3.1",
    "manifest_version": 3,
    "author": "Salar Khalilzadeh",
    "description": "__MSG_extensionDescription__",
    "homepage_url": "https:\/\/github.com\/salarcode\/SmartProxy",
    "default_locale": "en",
    "icons": {
        "16": "icons\/smartproxy-16.png",
        "24": "icons\/smartproxy-24.png",
        "48": "icons\/smartproxy-48.png",
        "96": "icons\/smartproxy-96.png",
        "128": "icons\/smartproxy-128.png"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "proxy",
        "webRequest",
        "storage",
        "unlimitedStorage",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "browser_style": true,
        "default_title": "__MSG_extensionName__",
        "default_popup": "ui\/popup.html",
        "default_icon": {
            "16": "icons\/smartproxy-16.png",
            "24": "icons\/smartproxy-24.png",
            "48": "icons\/smartproxy-48.png",
            "96": "icons\/smartproxy-96.png",
            "128": "icons\/smartproxy-128.png"
        }
    },
    "background": {
        "service_worker": "core.js"
    },
    "options_ui": {
        "page": "ui\/settings.html",
        "open_in_tab": true
    },
    "commands": {
        "next-proxy-server": {
            "suggested_key": {
                "default": "Ctrl+Shift+Period",
                "mac": "Command+Shift+Period"
            },
            "description": "Switch to next proxy server as the active proxy"
        },
        "proxy-mode-none": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            },
            "description": "Switch to 'No Proxy' mode"
        },
        "proxy-mode-smart": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "Command+Shift+2"
            },
            "description": "Switch to 'Smart Proxy' mode"
        },
        "proxy-mode-always": {
            "suggested_key": {
                "default": "Ctrl+Shift+3",
                "mac": "Command+Shift+3"
            },
            "description": "Switch to 'Always Enabled' mode"
        }
    },
    "minimum_chrome_version": "100"
}