- Python 3
- Pip 3
$ brew install python3
// Website you intended to retrieve for users. | |
const upstream = 'www.google.com' | |
// Custom pathname for the upstream website. | |
const upstream_path = '/' | |
// Website you intended to retrieve for users using mobile devices. | |
const upstream_mobile = 'www.google.com' | |
// Countries and regions where you wish to suspend your service. |
'use strict' | |
/** | |
* static files (404.html, sw.js, conf.js) | |
*/ | |
const ASSET_URL = 'https://etherdream.github.io/jsproxy' | |
const JS_VER = 10 | |
const MAX_RETRY = 1 |
// Website you intended to retrieve for users. | |
const upstream = 'api.openai.com' | |
// Custom pathname for the upstream website. | |
const upstream_path = '/' | |
// Website you intended to retrieve for users using mobile devices. | |
const upstream_mobile = upstream | |
// Countries and regions where you wish to suspend your service. |