there question is how to get http status code of newly created tab without fetch/XMLHttpRequest?
I tried with
browser.tabs.onUpdated.addListener(function (tabID, changeInfo, tab) {
console.log(changeInfo)
if (tabID === tabId && tab.status === 'complete') console.log(tab)
})
but it doesn't return any error status