console.message

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/370255/612436/consolemessage.js

Аўтар
spiralx
Версія
0.1.0
Створаны
13.07.2018
Абноўлены
13.07.2018
Памер
8.5 КБ
Ліцэнзія
Н/Д

console.message

Rich text console logging

From github.com/astoilkov/console.message.

Example:

console.message()
  .span({ color: 'red' })
    .text('this is red! ')
    .span({ color: 'green' })
      .text('this is green! ')
    .spanEnd()
    .text('this is again red!')
  .spanEnd()
  .line()
  .element(document.body)
  .print()