Is there a way to make an HTTP request using the Chrome Developer tools without using a plugin like POSTER?
If your web page has jquery in your page, then you can do it writing on chrome developers console:
$.get( "somepage.php", {paramOne : 1, paramX : 'abc'}, function(data) { alert('page content: ' + data); } );
Its jquery way of doing it!