Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get mozilla like firebug console in chrome?

the firebug console show each ajax request, and its parameters and the response,

is it possible to get this in chrome ?

like image 399
Omu Avatar asked Mar 04 '11 12:03

Omu


People also ask

What replaced Firebug for Firefox?

The Firebug web development tool, an open source add-on to the Firefox browser, is being discontinued after 12 years, replaced by Firefox Developer Tools.

How do I show console in Chrome?

To open the developer console in Google Chrome, open the Chrome Menu in the upper-right-hand corner of the browser window and select More Tools > Developer Tools. You can also use Option + ⌘ + J (on macOS), or Shift + CTRL + J (on Windows/Linux).

How do I open the console in Firebug?

Firebug can be opened by pressing F12. To open it to inspect an element it is possible to press Ctrl + Shift + C / Cmd + Opt + C . The DevTools share the same shortcuts, but also provide shortcuts for the different panels.

How do I open Firefox console?

You can open the Browser Console in one of two ways: from the menu: select “Browser Console” from the Web Developer submenu in the Firefox Menu (or Tools menu if you display the menu bar or are on macOS). from the keyboard: press Ctrl + Shift + J (or Cmd + Shift + J on a Mac).


2 Answers

Ctrl-Shift-I will open Chrome development tools. I assume this is what you wanted.

To see Ajax requests, click on "Network" and you'll see all network requests being made. By default you see them all, although you can filter them and just see Ajax requests. Take a look at bottom part of Network tab; you'll see "Documents", "Stylesheets", etc. You want "XHR".

like image 150
darioo Avatar answered Sep 20 '22 18:09

darioo


Yea u can have it. Enable it from the setting of chrome console.

  1. Press ctrl + shift + I
  2. click on setting (Gear) icon at the bottom right.
  3. check "Log XMLHttpRequests" at the console section part.

Thats it.

like image 31
GeeksCook Avatar answered Sep 20 '22 18:09

GeeksCook