SmartProxy

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

Τι είναι το SmartProxy;

Το SmartProxy είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Salar K, και η κύρια λειτουργία του είναι "Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης SmartProxy

Λήψη αρχείων επέκτασης SmartProxy σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SmartProxy SmartProxy
ID jogcnplbkgkfdakgdenhlpcfhjioidoj
Επίσημο URL https://chromewebstore.google.com/detail/smartproxy/jogcnplbkgkfdakgdenhlpcfhjioidoj
Περιγραφή Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns.
Μέγεθος Αρχείου 978 KB
Αριθμός Εγκαταστάσεων 22,941
Τρέχουσα Έκδοση 1.3.1
Τελευταία Ενημέρωση 2023-07-20
Ημερομηνία Δημοσίευσης 2020-05-23
Αξιολόγηση 4.44/5 Συνολικά 115 Αξιολογήσεις
Προγραμματιστής Salar K
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/salarcode/SmartProxy
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/salarcode/SmartProxy/issues
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/salarcode/SmartProxy/wiki/Privacy
Υποστηριζόμενες Γλώσσες 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"
}