vote up 27 vote down star
6

Is there anything like Firebug that you can use within Google Chrome?

Essential features I would like:

  • Inspect HTML source (select elements, delete them, etc.)
  • check CSS values (the built-in solution is weird, somehow)
flag

73% accept rate

7 Answers

vote up 36 vote down check

While its true that Google Chrome does not offer plugins, there is a Firebug-like tool already built in Chrome. Just right click anywhere on a page and choose "Inspect element" from the menu. Chrome inspector wont do JavaScript debugging* (like Firebug) but it does CSS inspection well and can even change CSS rendering on the fly.

*correction: since this response was written, Chrome has replaced its command line debugger with a graphical tool (like in Firebug). So you can debug JavaScipt, although some features (like GUI watch variables) are missing.

link|flag
1  
++ This is good enough for troubleshooting Chrome-specific issues. If I want deeper introspection, I can do it with Firebug. Now with IE8's new developer mode, all the major browsers have builtin dev modes. Good times. – guns Apr 27 at 9:32
Ah, took me a bit to find it, but the html editing functionality of firebug is there as well, in the same place that you can edit the css, the developer toolbar, double click an element, type, and hit enter, and there you go, html edited. – Tchalvak Oct 17 at 4:01
The Chrome Developer Tools (ctrl+shift+j) does support Javascript debugging like Firebug. Click on the Scripts tab then on the second icon at the bottom (>=) that has a tooltip of "Show console". From there you can execute Javascript commands like the Firebug console. – Pierre LaFayette Nov 8 at 8:02
Remember on some linux-based system it doesn't get installed automatically, so you need to install it manually: sudo apt-get install chromium-browser-inspector – Manuel Nov 10 at 13:00
vote up 1 vote down

You can set this bookmarklet in your "Bookmarks Bar" in order to have Firebug lite always available in Chrome/Chromium browser (put this as the URL):

javascript:var firebug=document.createElement('script');firebug.setAttribute('src','http://getfirebug.com/releases/lite/1.2/firebug-lite-compressed.js');document.body.appendChild(firebug);(function(){if(window.firebug.version){firebug.init();}else{setTimeout(arguments.callee);}})();void(firebug);
link|flag
vote up 0 vote down

well, it is possible to enable greasemonkey scripts for google chrome so maybe there is a way to sort of install firebug using this method? Firebug lite would also work, but it's just not the same feeling as using the full featured one :(

willshouse.com/2009/05/29/install-greasemonkey-for-chrome-a-better-guide/

link|flag
vote up -2 vote down

http://getfirebug.com/releases/#chromebug

link|flag
ChromeBug is for debugging Chrome applications, not for the Google Chrome browser. – Sebastian Hoitz Mar 25 at 11:41
vote up 6 vote down

Firebug Lite supports to inspect HTML elements, computed CSS style, and a lot more. Since it's pure JavaScript, it works in many different browsers. Just include the script in your source, or add the bookmarklet to your bookmark bar to include it on any page with a single click.

http://getfirebug.com/lite.html

link|flag
Great link! Didn't know about IE version – Daok Dec 9 '08 at 16:38
vote up 6 vote down

Google Chrome doesn't offer plugins at this point in development, so no.

link|flag
Oh, that sucks :( But thank you for the answer. – Sebastian Hoitz Nov 21 '08 at 7:51
Patience, young one. – christian studer Nov 21 '08 at 8:40
Correct me if I am wrong, but I reckon that they will provide that functionality (plugin like Firefox's extension) anyway. – Nordin May 14 at 0:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.