gitextract_4gq2v2ts/ ├── .gitignore ├── .npmignore ├── API.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples/ │ ├── photobooth/ │ │ ├── README.md │ │ ├── main.js │ │ ├── package.json │ │ └── www/ │ │ └── index.html │ ├── systeminfo/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── app.js │ │ ├── main.js │ │ ├── package.json │ │ ├── test.js │ │ └── www/ │ │ └── index.html │ ├── terminal/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── main.js │ │ ├── package.json │ │ ├── worker.js │ │ └── www/ │ │ └── index.html │ └── windows/ │ ├── README.md │ ├── main.html │ ├── main.js │ └── package.json ├── index.js ├── lib/ │ ├── carlo.js │ ├── color.js │ ├── features/ │ │ ├── file_info.js │ │ └── shortcuts.js │ ├── find_chrome.js │ └── http_request.js ├── package.json ├── rpc/ │ ├── index.js │ ├── rpc.js │ ├── rpc.md │ ├── rpc_process.js │ └── test.js └── test/ ├── app.spec.js ├── color.spec.js ├── folder/ │ ├── index.html │ └── redirect.html ├── headful.js ├── http/ │ └── index.html └── test.js