Allows chrome console to be dumped to file with features more than Chrome offers.
- Object expansion: instead of seeing [object Object] in a file, it will be expanded with JSON.stringify(object)
- Timestamps: in UTC time
- Log level: debug, log, warn, error
- Open Developer Tools
- Go to Sources tab
- Go to Snippets page (you may need to click >>)
- Add the javascript file as a snippet
- Right click on the snippet and select run
- console.log, console.warn, console.error, console.debug all work the same
- console.dump(filename) to download the logs as a file. If no filename is given, the filename will be console.logs