proxy_generate_setup
Generate browser and system proxy setup scripts for HTTP/HTTPS proxy connections. Automates configuration for Chrome, Firefox, cURL, and system-wide settings, including PAC files, using specified host and port.
Instructions
Generate browser and system proxy setup scripts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
browsers | No | Browser types to generate setup for | |
proxyHost | No | Proxy server host | localhost |
proxyPort | No | Proxy server port |
Input Schema (JSON Schema)
{
"properties": {
"browsers": {
"default": [
"chrome",
"firefox",
"pac"
],
"description": "Browser types to generate setup for",
"items": {
"enum": [
"chrome",
"firefox",
"curl",
"system",
"pac"
],
"type": "string"
},
"type": "array"
},
"proxyHost": {
"default": "localhost",
"description": "Proxy server host",
"type": "string"
},
"proxyPort": {
"default": 8080,
"description": "Proxy server port",
"type": "number"
}
},
"type": "object"
}