Simple Proxy
Proxy switch for each individual website.
What is Simple Proxy?
Simple Proxy is a Chrome extension developed by jinzhenzu, and its main feature is "Proxy switch for each individual website.".
Extension Screenshots
Download Simple Proxy Extension CRX File
Download Simple Proxy extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
If you need to configure a separate proxy policy for each domain name, then you will need this extension. This extension helps you easily control whether each domain uses a proxy and provides a convenient black and white list mode.
Extension Basic Information
Name | Simple Proxy |
ID | pjogfmifcmhdmfogmihinlfgdbfbjcli |
Official URL | https://chromewebstore.google.com/detail/simple-proxy/pjogfmifcmhdmfogmihinlfgdbfbjcli |
Description | Proxy switch for each individual website. |
File Size | 180 KB |
Installation Count | 163 |
Current Version | 3.2.0 |
Last Updated | 2023-11-30 |
Publish Date | 2019-11-25 |
Developer | jinzhenzu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jzz4012650/simple_proxy/tree/v3.1.0 |
Help Page URL | https://github.com/jzz4012650/simple_proxy/tree/v3.1.0 |
Supported Languages | en,zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_name__", "description": "__MSG_description__", "version": "3.2.0", "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html", "default_title": "Proxy" }, "background": { "service_worker": "background.js", "type": "module" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_locale": "en", "options_page": "options.html", "permissions": [ "proxy", "tabs", "storage", "webRequest", "webNavigation" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |