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)
|
6
|
Is there anything like Firebug that you can use within Google Chrome? Essential features I would like:
|
|||
|
|
|
|
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. |
||||||||||
|
|
|
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):
|
||
|
|
|
|
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/ |
||
|
|
|
|
|
||
|
|
|
Or try user scripts: http://dev.chromium.org/developers/design-documents/user-scripts |
||
|
|
|
|
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. |
||
|
|
|
Google Chrome doesn't offer plugins at this point in development, so no. |
||||||
|