Get console history

前端 未结 4 754
無奈伤痛
無奈伤痛 2020-12-30 01:42

I\'d like to know if there is a way in javascript to retrieve console history.

What I mean by console history is what appears in the dev tools console. For instance,

4条回答
  •  天命终不由人
    2020-12-30 02:21

    Chrome extensions had an API for that, experimental.devtools.console:

    chrome.experimental.devtools.console.getMessages(function(messages) {  })
    

    This API has been removed.

提交回复
热议问题