Greasy Fork is available in English.

console.message

Rich text console logging

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.greasyfork.org/scripts/370255/612436/consolemessage.js

作者
spiralx
版本
0.1.0
建立日期
2018-07-13
更新日期
2018-07-13
授權條款
未知

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