gitextract_tq7m8ylh/ ├── .clangd ├── .github/ │ └── workflows/ │ └── xmake.yml ├── .gitignore ├── .gitmodules ├── README.md ├── deps/ │ ├── blook.lua │ └── breeze-js.lua ├── ipc/ │ ├── ipc.cc │ ├── ipc.h │ └── shared_memory_ipc.h ├── scripts/ │ ├── bindgen.bat │ └── rebuild.ps1 ├── src/ │ ├── config.cc │ ├── config.h │ ├── context.cc │ ├── context.h │ ├── entry.cc │ ├── hooks/ │ │ ├── blink_parse_html_manipulator.cc │ │ ├── blink_parse_html_manipulator.h │ │ ├── disable-integrity.cc │ │ ├── disable-integrity.h │ │ ├── wait_for_module_load.cc │ │ └── wait_for_module_load.h │ ├── script/ │ │ ├── bindings/ │ │ │ ├── binding_qjs.h │ │ │ ├── binding_types.cc │ │ │ ├── binding_types.d.ts │ │ │ ├── binding_types.h │ │ │ └── quickjspp.hpp │ │ ├── script.cc │ │ └── script.h │ ├── utils.cc │ └── utils.h ├── test/ │ └── ipc_test.cc └── xmake.lua