SmartProxy

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

Hvad er SmartProxy?

SmartProxy er en Chrome-udvidelse udviklet af Salar K, og dens hovedfunktion er "Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download SmartProxy-udvidelses-CRX-fil

Download SmartProxy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn SmartProxy SmartProxy
ID jogcnplbkgkfdakgdenhlpcfhjioidoj
Officiel URL https://chromewebstore.google.com/detail/smartproxy/jogcnplbkgkfdakgdenhlpcfhjioidoj
Beskrivelse Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.
Filstørrelse 978 KB
Antal Installationer 22,941
Nuværende Version 1.3.1
Senest Opdateret 2023-07-20
Udgivelsesdato 2020-05-23
Bedømmelse 4.44/5 Samlet 115 Bedømmelser
Udvikler Salar K
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/salarcode/SmartProxy
Hjælpeside-URL https://github.com/salarcode/SmartProxy/issues
URL til Fortrolighedspolitik Side https://github.com/salarcode/SmartProxy/wiki/Privacy
Understøttede Sprog 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"
}