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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/salarcode/SmartProxy/issues
عنوان صفحة سياسة الخصوصية 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"
}