Greasy Fork

console.message

Rich text console logging

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/scripts/370255/612436/consolemessage.js

作者
spiralx
版本
0.1.0
创建于
2018-07-13
更新于
2018-07-13
大小
8.5 KB
许可证
暂无

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()