├── .compilerc
├── .gitignore
├── LICENSE
├── MainApp.js
├── README.md
├── RenderApp.js
├── docs
├── images
│ ├── default.png
│ ├── rule_table.png
│ └── rule_table_add_rule.png
└── index.html
├── index.html
├── lib
├── MainPlugin.js
├── ProxyManager.js
├── RenderPlugin.js
└── openproxy
│ ├── README.md
│ ├── index.js
│ ├── lib
│ ├── config.js
│ ├── proxy.js
│ └── session.js
│ └── package.json
├── main.js
├── package.json
├── plugin
├── rule-table
│ ├── HttpStatus.js
│ ├── main.js
│ ├── package.json
│ ├── render.js
│ ├── template
│ │ ├── group-item.html
│ │ ├── http-status-modal.html
│ │ ├── main.html
│ │ ├── modal.html
│ │ └── rule-item.html
│ └── translations
│ │ ├── en.json
│ │ └── ko.json
└── settings
│ ├── main.js
│ ├── package.json
│ ├── render.js
│ ├── template
│ └── main.html
│ └── translations
│ ├── en.json
│ └── ko.json
├── renderer.js
├── resource
└── less
│ ├── main.less
│ ├── rule-table.less
│ └── settings.less
├── system
├── darwin
│ └── DarwinProxyManager.sh
└── window
│ ├── WindowProxyManager.exe
│ ├── WindowProxyManager.sln
│ └── WindowProxyManager
│ ├── Program.cs
│ ├── Properties
│ └── AssemblyInfo.cs
│ ├── ProxyManager.cs
│ ├── WindowProxyManager.OpenCover.Settings
│ ├── WindowProxyManager.csproj
│ ├── WindowProxyManager.csproj.sdsettings
│ └── app.config
├── template
├── content.html
├── main.html
└── menu-item.html
└── translations
├── en.json
├── i18n.js
└── ko.json
/.compilerc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/.compilerc
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/.gitignore
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/LICENSE
--------------------------------------------------------------------------------
/MainApp.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/MainApp.js
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/README.md
--------------------------------------------------------------------------------
/RenderApp.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/RenderApp.js
--------------------------------------------------------------------------------
/docs/images/default.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/docs/images/default.png
--------------------------------------------------------------------------------
/docs/images/rule_table.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/docs/images/rule_table.png
--------------------------------------------------------------------------------
/docs/images/rule_table_add_rule.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/docs/images/rule_table_add_rule.png
--------------------------------------------------------------------------------
/docs/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/docs/index.html
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/index.html
--------------------------------------------------------------------------------
/lib/MainPlugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/MainPlugin.js
--------------------------------------------------------------------------------
/lib/ProxyManager.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/ProxyManager.js
--------------------------------------------------------------------------------
/lib/RenderPlugin.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/RenderPlugin.js
--------------------------------------------------------------------------------
/lib/openproxy/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/openproxy/README.md
--------------------------------------------------------------------------------
/lib/openproxy/index.js:
--------------------------------------------------------------------------------
1 | module.exports = require('./lib/proxy');
--------------------------------------------------------------------------------
/lib/openproxy/lib/config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/openproxy/lib/config.js
--------------------------------------------------------------------------------
/lib/openproxy/lib/proxy.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/openproxy/lib/proxy.js
--------------------------------------------------------------------------------
/lib/openproxy/lib/session.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/openproxy/lib/session.js
--------------------------------------------------------------------------------
/lib/openproxy/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/lib/openproxy/package.json
--------------------------------------------------------------------------------
/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/main.js
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/package.json
--------------------------------------------------------------------------------
/plugin/rule-table/HttpStatus.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/HttpStatus.js
--------------------------------------------------------------------------------
/plugin/rule-table/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/main.js
--------------------------------------------------------------------------------
/plugin/rule-table/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/package.json
--------------------------------------------------------------------------------
/plugin/rule-table/render.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/render.js
--------------------------------------------------------------------------------
/plugin/rule-table/template/group-item.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/template/group-item.html
--------------------------------------------------------------------------------
/plugin/rule-table/template/http-status-modal.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/template/http-status-modal.html
--------------------------------------------------------------------------------
/plugin/rule-table/template/main.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/template/main.html
--------------------------------------------------------------------------------
/plugin/rule-table/template/modal.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/template/modal.html
--------------------------------------------------------------------------------
/plugin/rule-table/template/rule-item.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/template/rule-item.html
--------------------------------------------------------------------------------
/plugin/rule-table/translations/en.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/translations/en.json
--------------------------------------------------------------------------------
/plugin/rule-table/translations/ko.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/rule-table/translations/ko.json
--------------------------------------------------------------------------------
/plugin/settings/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/settings/main.js
--------------------------------------------------------------------------------
/plugin/settings/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/settings/package.json
--------------------------------------------------------------------------------
/plugin/settings/render.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/settings/render.js
--------------------------------------------------------------------------------
/plugin/settings/template/main.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/settings/template/main.html
--------------------------------------------------------------------------------
/plugin/settings/translations/en.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | }
--------------------------------------------------------------------------------
/plugin/settings/translations/ko.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/plugin/settings/translations/ko.json
--------------------------------------------------------------------------------
/renderer.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/renderer.js
--------------------------------------------------------------------------------
/resource/less/main.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/resource/less/main.less
--------------------------------------------------------------------------------
/resource/less/rule-table.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/resource/less/rule-table.less
--------------------------------------------------------------------------------
/resource/less/settings.less:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/resource/less/settings.less
--------------------------------------------------------------------------------
/system/darwin/DarwinProxyManager.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/darwin/DarwinProxyManager.sh
--------------------------------------------------------------------------------
/system/window/WindowProxyManager.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager.exe
--------------------------------------------------------------------------------
/system/window/WindowProxyManager.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager.sln
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/Program.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager/Program.cs
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager/Properties/AssemblyInfo.cs
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/ProxyManager.cs:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager/ProxyManager.cs
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/WindowProxyManager.OpenCover.Settings:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/WindowProxyManager.csproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager/WindowProxyManager.csproj
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/WindowProxyManager.csproj.sdsettings:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/system/window/WindowProxyManager/app.config:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/system/window/WindowProxyManager/app.config
--------------------------------------------------------------------------------
/template/content.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/template/content.html
--------------------------------------------------------------------------------
/template/main.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/template/main.html
--------------------------------------------------------------------------------
/template/menu-item.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/template/menu-item.html
--------------------------------------------------------------------------------
/translations/en.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | }
--------------------------------------------------------------------------------
/translations/i18n.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/easylogic/openproxy-ui/HEAD/translations/i18n.js
--------------------------------------------------------------------------------
/translations/ko.json:
--------------------------------------------------------------------------------
1 | {
2 |
3 | }
4 |
--------------------------------------------------------------------------------