Record and manage HTTP requests for AngusTester.
AngusRecorder is a plugin specifically designed for Google Chrome browser, aimed at helping developers and testers
easily record and analyze network requests. The recorded results can be directly saved to the AngusTester application,
supporting various scenarios including api debugging, scenario testing, and mock request functionality.
AngusRecorder/
├── public/
│ ├── icon16.png
│ ├── icon48.png
│ └── icon128.png
├── src/
│ ├── components/
│ │ └── Other Vue components can be added...
│ ├── App.vue
│ ├── background.js
│ ├── main.js
│ └── manifest.json
├── index.html
├── package.json
├── vite.config.js
└── README.md
## Create Vite + Vue3 project
npm init vite@latest AngusRecorder -- --template vue
## Install required dependencies
npm install @vitejs/plugin-vue @crxjs/vite-plugin @types/chrome axios
# After running the following command, the plugin files will be output to the /dist directory.
npm run build