Greasy Fork is available in English.

console.message

Rich text console logging

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyfork.org/scripts/370255/612436/consolemessage.js

Autor
spiralx
Verzia
0.1.0
Vytvorené
13.07.2018
Aktualizované
13.07.2018
Licencia
neuvedené

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