├── .github └── ISSUE_TEMPLATE │ ├── 1-Bug_report.md │ ├── 2-Question.md │ └── 3-Feature-Request.md ├── .gitignore ├── README.md └── screenshots ├── banner_v2.png └── new_dashboard_macOS_26.jpg /.github/ISSUE_TEMPLATE/1-Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/.github/ISSUE_TEMPLATE/1-Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-Question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/.github/ISSUE_TEMPLATE/2-Question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/3-Feature-Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/.github/ISSUE_TEMPLATE/3-Feature-Request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/banner_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/screenshots/banner_v2.png -------------------------------------------------------------------------------- /screenshots/new_dashboard_macOS_26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProxymanApp/Proxyman/HEAD/screenshots/new_dashboard_macOS_26.jpg --------------------------------------------------------------------------------