A 100% browser-based toolbox for Genshin Impact with every line of code made by working overtime.
- Achievements scanning
- Achievement management
- More features to come...
- Recognize achievements by using a special version of PaddleOCR and onnxruntime to run OCR in your browser.
- Auto switching by running a clien that is only 440 K in size.
- Chinese and English are currently supported for recognition.
- Support for mobile phone screenshots.
- Support filtering achievements by category, task & commissions
- Support for viewing the trigger conditions of achievements. If the achievement is triggered by task, the task name can be displayed.
- Any issues/feedback is welcome. Don't be scared by all the Chinese text, we'll answer you in English!
FAQs
- Q: Can I use this locally?
A: Yes. Just download thesinglefile build
fromGitHub Actions
and open the local HTML file with Chrome v91 or higher . - Q: Why does this website need a client?
A: It is implossible to simulate keyboard and mouse events without it. - Q: Why make a web page and not just a client?
A: Web pages can be used anywhere! - Q: Why does the client need administrator privileges?
A: Genshin Impact runs with administrator privileges. If you run cocogoat with normal privileges, it will not be able to simulate the click and scroll wheel actions. - Q: Is the client opensource?
A: cocogoat-control - Q: Will my data be sent to the server?
A: No. Amy data that needs to be sent (such as feedback) will prompt you before it is sent. Even crash reports can be turned off in the settings. - Q: Can I export data to...?
A: Eventually, we just need a PR/issue to be submitted with the required import format!
- Just reload the page by pressing Ctrl + F5
This project is based on TypeScript
and Vue.js
.
Feel free to contribute by creating pull requests or submitting bug reports/feature requests!
- Run locally:
pnpm serve
(Vite) - Build locally:
pnpm build
(webpack) - Build as a single file:
pnpm build:singlefile
(Vite) - You can specify the toolchain with
:vite
or:webpack
. We recommendVite
for development andwebpack
for deployment after testing.