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,
Chrome extensions had an API for that, experimental.devtools.console:
chrome.experimental.devtools.console.getMessages(function(messages) { })
This API has been removed.