Simple Proxy
Proxy switch for each individual website.
Was ist Simple Proxy?
Simple Proxy ist eine Chrome-Erweiterung, die von jinzhenzu entwickelt wurde, und ihr Hauptmerkmal ist "Proxy switch for each individual website.".
Erweiterungsscreenshots
Simple Proxy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Simple Proxy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pjogfmifcmhdmfogmihinlfgdbfbjcli |
| Offizielle URL | https://chromewebstore.google.com/detail/simple-proxy/pjogfmifcmhdmfogmihinlfgdbfbjcli |
| Beschreibung | Proxy switch for each individual website. |
| Dateigröße | 180 KB |
| Installationsanzahl | 163 |
| Aktuelle Version | 3.2.0 |
| Letztes Update | 2023-11-30 |
| Veröffentlichungsdatum | 2019-11-25 |
| Entwickler | jinzhenzu |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/jzz4012650/simple_proxy/tree/v3.1.0 |
| Hilfeseite URL | https://github.com/jzz4012650/simple_proxy/tree/v3.1.0 |
| Unterstützte Sprachen | 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:\/\/*\/*"
]
} | |