SmartProxy

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

SmartProxy란 무엇입니까?

SmartProxy은(는) Salar K에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Smart Proxy will automatically enable/disable proxy for the sites you visit, based on customizable patterns."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

SmartProxy 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
}