I've grown tired of the multitude of issues I seem to hit on a daily basis with Firefox and I'm trying once again to switch to Chrome.

One of the things that frustrates me is the layout of the tabs in the inspector. In firebug they are all along the top so if I want the metrics of an item it's incredibly simple. In Chrome I'm forever scrolling up and down.

Is there anyway to change the way this works? All I want to do is change the layout to something a little similar to Firebug.

Cheers!

link|improve this question
feedback

3 Answers

The Chrome web inspector is just a web application, so is very customizable. You can download a copy of the devtools HTML/CSS/JS and tell Chrome to use it with a command line flag. Some resources for you:

link|improve this answer
Huge thanks for this, I know what I'll be doing when I've got a bit of spare time! – Christopher Leckie Aug 25 '11 at 8:18
feedback

Dev tools are just CSS/JavaScript so you can do whatever you want.

If you watch this video, Paul Irish shows how to run a build of Chrome and point to your own dev tools code. Kind of cool!

http://blip.tv/jsconf/jsconf2011-paul-irish-5382827

link|improve this answer
Thanks very much! Will have to get this done. – Christopher Leckie Aug 25 '11 at 8:18
NP, be sure to vote it up / check as correct – Wes Aug 26 '11 at 4:54
feedback

The devtools CSS is at chrome-devtools://devtools/devTools.css (copy and paste the address into the address bar).

Override the styles using Custom.css which lives at:

  • C:\Users\<user>\AppData\Local\Google\Chrome\User Data\Default\User StyleSheets on Windows
  • ~/Library/Google/Chrome/Default/User StyleSheets on OS X
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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