🏠 

console-message-v2

Rich text console logging

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/389748/730537/console-message-v2.js


Ask a question, post a review, or report the script.
Author
spiralx
Version
2.0.0
Created
2019-09-04
Updated
2019-09-04
Size
13.3 KB
License
N/A

console-message-v2.js - rich-text console logging

Revamped version of library written using ES6 and with some added functionality.

Based on the original console.message library (the old version can be @required as a library from here still).

Example
console.message()
.span({ color: 'red' })
.text('this is red! ')
.text('this is green! ', { color: 'green' })
.text('this is again red!')
.line('info')
.object(console)
.trace()
.line()
.element(document.body)
.print()