Is there a way to make an HTTP request using the Chrome Developer tools without using a plugin like POSTER?
To GET requests with headers, use this format.
fetch('http://example.com', { method: 'GET', headers: new Headers({ 'Content-Type': 'application/json', 'someheader': 'headervalue' }) }) .then(res => res.json()) .then(console.log)