Tools similar to HTTP Watch or YSlow for Google Chrome browser
Hi开发者_运维百科 We are testing our app in Google chrome for support. The basic loading is in scrambled and all the pages are in total CSS mess which we need to clean up unfortunately.For this I require a tool which works similar to firebug for Mozilla.Also to check headers, cookies, caching and POST data ,compression, redirection & chunked encoding a similar tool to HTTP watch is also desired. Any suggestions.Thanks
Chrome comes with a Firebug equivalent built-in. Just right-click to inspect element
and you should see the debugger.
Then install "Speed Tracer" and you will have profiling tools.
Try the inspector. It has basically the same feature set as Firebug, and is built-in (it comes with pretty much every WebKit-based browser, so you'll find it in Safari too).
Right-click on something and choose "Inspect Element", or go to the Document-icon menu and look at the Developer sub menu.
Google has a whole page on this subject (along with the announcement that speed will be considered in ranking pages):
- Page Speed, an open source Firefox/Firebug add-on that evaluates the performance of web pages and gives suggestions for improvement.
- YSlow, a free tool from Yahoo! that suggests ways to improve website speed.
- WebPagetest shows a waterfall view of your pages' load performance plus an optimization checklist.
- In Webmaster Tools, Labs > Site Performance shows the speed of your website as experienced by users around the world as in the chart below. We've also blogged about site performance.
YSlow for Google Chrome was launched last week - http://developer.yahoo.com/blogs/ydn/posts/2011/03/yslow-for-chrome/
Other than that, you can try using Google sped tracer(it works only in Chrome dev version).
If you want Firebug for Chrome, try Firebug Lite: getfirebug.com/firebuglite (can't post more than one link, huh), and here's a Chrome extension.
Open "Developer Tools" in menu 'View' -> 'Developer'. It will give you a bunch of tabs. Click on "Resources" and then "enable" it (it's disabled by default). Chrome will start tracking http traffics and give you the info (almost) as rick as you can get from HttpWatch.
I'm using Chrome 8.0.
精彩评论