I\'m in a Google Chrome extension with permissions for \"*://*/*\" and I\'m trying to make the switch from XMLHttpRequest to the Fetch API.
\"*://*/*\"
The extensio
Fetch does not show headers while debugging or if you console.log response.
console.log
You have to use following way to access headers.
response.headers.get('x-auth-token')