├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets └── screenshot.png ├── index.js ├── json-human ├── crel.js ├── json.human.css └── json.human.js ├── package.json ├── samples ├── init-session.json └── init-session.json.html ├── usage.txt ├── visualize.html └── visualize.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/README.md -------------------------------------------------------------------------------- /assets/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/assets/screenshot.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/index.js -------------------------------------------------------------------------------- /json-human/crel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/json-human/crel.js -------------------------------------------------------------------------------- /json-human/json.human.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/json-human/json.human.css -------------------------------------------------------------------------------- /json-human/json.human.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/json-human/json.human.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/package.json -------------------------------------------------------------------------------- /samples/init-session.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/samples/init-session.json -------------------------------------------------------------------------------- /samples/init-session.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/samples/init-session.json.html -------------------------------------------------------------------------------- /usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/usage.txt -------------------------------------------------------------------------------- /visualize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/visualize.html -------------------------------------------------------------------------------- /visualize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/chromium-remote-debugging-proxy/HEAD/visualize.js --------------------------------------------------------------------------------