<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:wfw="http://wellformedweb.org/CommentAPI/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    >

<channel>
    <title>Webmonkey &#187; performance</title>
    <atom:link href="http://www.webmonkey.com/tag/performance/feed/" rel="self" type="application/rss+xml" />
    <link>http://www.webmonkey.com</link>
    <description>The Web Developer&#039;s Resource</description>
    <lastBuildDate>Mon, 06 May 2013 17:29:19 +0000</lastBuildDate>
    <language>en-US</language>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>1</sy:updateFrequency>
    <generator>http://wordpress.org/?v=3.4.2</generator>
    
    <item>
        <title>Put Your Site on a Diet With Google&#8217;s Image-Shrinking &#8216;WebP&#8217; Format</title>
        <link>http://www.webmonkey.com/2013/03/put-your-site-on-a-diet-with-googles-image-shrinking-webp-format/</link>
        <comments>http://www.webmonkey.com/2013/03/put-your-site-on-a-diet-with-googles-image-shrinking-webp-format/#comments</comments>
        <pubDate>Wed, 13 Mar 2013 15:41:36 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=61262</guid>
        		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[WebP]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2013/03/webpcomparison-200x100.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2013/03/webpcomparison.jpg" alt="Put Your Site on a Diet With Google&#8217;s Image-Shrinking &#8216;WebP&#8217; Format" /></div>An image may be worth a thousand words, but it sure takes a lot longer to download. Google's WebP image format may offer some help though, shrinking images more than popular formats like JPEG. Not every browser supports Google's nascent WebP image format, but it's pretty simple to serve up smaller images to those that do.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><div id="attachment_61265" class="wp-caption aligncenter" style="width: 590px"><a href="https://developers.google.com/speed/webp/gallery1"><img src="http://www.webmonkey.com/wp-content/uploads/2013/03/webpcomparison.jpg" alt="" title="webpcomparison" width="580" height="218" class="size-full wp-image-61265" /></a><p class="wp-caption-text">WebP versus JPEG. Click the image to see the full size examples on Google&#8217;s WebP comparison page. <em>Image: Google</em></p></div>
<p>Webpages are constantly getting bigger.</p>
<p>Massive JavaScript libraries and endless sharing buttons aren&#8217;t helping, but the main culprit behind most of the bloat is the good old image. According to the HTTPArchive, images account for roughly <a href="http://httparchive.org/interesting.php#bytesperpage">60 percent of total page size</a>. That means the single biggest thing most sites can do to slim down is to shrink their images.</p>
<p>One way to do that is with alternate image formats like Google&#8217;s <a href="http://www.webmonkey.com/2010/10/meet-webp-googles-new-image-format-for-the-web/">WebP</a>, which can yield images between 25 and 34 percent smaller than more popular image formats. Despite the astounding space-saving potential of WebP it, like JPEG 2000 and other efforts before it, has not completely caught on with browsers.</p>
<p>So far only Google Chrome and Opera support WebP (both also automatically convert all images to WebP for their respective <a href="http://www.webmonkey.com/2013/03/mobile-browsers-help-users-avoid-bloated-webpages/">proxy browsing mobile services</a>). Mozilla <a href="http://muizelaar.blogspot.co.uk/2011/04/webp.html">objected to WebP</a> when it was first launched, but all of the issues raised in that post have been addressed as WebP has evolved. Firefox still does not support WebP. Nor does Internet Explorer.</p>
<p>However, as Opera&#8217;s Bruce Lawson <a href="http://www.brucelawson.co.uk/2013/save-bandwidth-webp-with-fallback/">recently pointed out</a>, using some cutting-edge CSS wizardry you can serve WebP images to Chrome and Opera, while still offering JPGs to the rest. Here&#8217;s what the code would look like:</p>
<pre class="brush: js">
.mybackgroundimage {
    background-image: url("image.jpg");
    background-image: image("image.webp" format('webp'), "image.jpg");
}
</pre>
<p>This code uses the new <a href="http://www.w3.org/TR/css4-images/#image-fallbacks">Image Fallbacks syntax</a>, which is part of the CSS Image Values and Replaced Content Module Level 4. The format qualifier is borrowed from <code>@font-face</code> and ensures that browsers won&#8217;t download the WebP image if they don&#8217;t support it.</p>
<p>Of course this only helps with CSS background images, which probably aren&#8217;t the majority of the images most sites serve up. For content images there&#8217;s currently no easy way to do the same thing, though there might be in the future if browsers begin to <a href="http://www.webmonkey.com/2012/11/preview-the-proposed-html-picture-element/">support the proposed <code>&lt;picture&gt;</code> element</a>. Because <code>&lt;picture&gt;</code>&#8216;s syntax is roughly analogous, you would be able to do something like this:</p>
<pre class="brush: js">
&lt;picture&gt;
    &lt;source src=image.webp type=image/webp &gt;
    &lt;source src=image.png type=image/png &gt;
    &lt;img src=image.png alt="alt text "&gt; &lt;!-- fallback content --&gt;
&lt;/picture&gt;
</pre>
<p>That would cover almost all the bases: browsers that support WebP and <code>&lt;picture&gt;</code>, browsers that support <code>&lt;picture&gt;</code> but not WebP and browsers that support neither. Unfortunately it&#8217;s going to be a while before this pseudocode becomes real. </p>
<p>WebP has other problems worth considering before you dive in. For example, when users save an image they may have trouble getting a WebP image to open in their favorite desktop app. </p>
<p>Still, while WebP may have a little ways to go, the potential to significantly reduce page size appears to be winning converts. If you&#8217;d like to learn more about WebP and how you can use it, check out the video below from Google&#8217;s Making the Web Fast series.</p>
<p><iframe width="580" height="326" src="http://www.youtube.com/embed/4tu2SJfSalA" frameborder="0" allowfullscreen></iframe></p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2013/03/put-your-site-on-a-diet-with-googles-image-shrinking-webp-format/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>Mobile Browsers Help Users Avoid Bloated Webpages</title>
        <link>http://www.webmonkey.com/2013/03/mobile-browsers-help-users-avoid-bloated-webpages/</link>
        <comments>http://www.webmonkey.com/2013/03/mobile-browsers-help-users-avoid-bloated-webpages/#comments</comments>
        <pubDate>Fri, 08 Mar 2013 16:30:23 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=61206</guid>
        		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[UI/UX]]></category>
		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[Opera Mobile]]></category>
		<category><![CDATA[performance]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2013/03/donuts-200x100.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2013/03/donuts.jpg" alt="Mobile Browsers Help Users Avoid Bloated Webpages" /></div>The internet sees your bloated webpages as damage and it's taking steps to route around them. Both Chrome and Opera have recently added an option for mobile users to connect to proxy servers, which slim down webpages before sending them over constrained mobile connections. The rise of proxy servers will likely mean that, in the future, developers will have even less control over how users access their sites.]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<p><div id="attachment_61207" class="wp-caption aligncenter" style="width: 590px"><a href="http://www.webmonkey.com/wp-content/uploads/2013/03/donuts.jpg"><img src="http://www.webmonkey.com/wp-content/uploads/2013/03/donuts.jpg" alt="" title="donuts" width="580" height="374" class="size-full wp-image-61207" /></a><p class="wp-caption-text">Stop feeding your website donuts. <em>Image: <a href="https://secure.flickr.com/photos/pinksherbet/1354739463/">D. Sharon Pruitt/Flickr</a></em>.</p></div>Websites are getting fatter, dramatically fatter, with the average page size of sites tracked by the HTTPArchive now <a href="http://httparchive.org/trends.php">nearly 1.3 MB</a>. If the current rate of page size increase continues, that number will <a href="http://www.webperformancetoday.com/2012/11/15/average-web-page-grows-20-percent/">reach 2MB sometime early next year</a>. </p>
<p>That&#8217;s bad for pretty much everyone, but doubly so for mobile users with constrained bandwidth.</p>
<p>Fortunately for mobile users, the network increasingly seems to see large page sizes as damage to route around. </p>
<p>Services like Instapaper, Pocket or Safari&#8217;s Reader have long offered an easy way to strip out extraneous content. Now mobile web browsers are increasingly taking it upon themselves to speed up the bloated web.</p>
<p>The recently unveiled <a href="http://www.webmonkey.com/2013/03/reborn-opera-mobile-sings-on-android/">WebKit-based Opera Mobile</a> borrows Opera Mini&#8217;s proxy-based Turbo Mode, or &#8220;Off Road&#8221; mode as it&#8217;s known now. Once only deemed necessary for feature phones (Opera Mini&#8217;s primary market) proxy-based browsing will soon be available in all Opera browsers.</p>
<p>Google&#8217;s Chrome for Android browser is getting ready to follow suit. </p>
<p>The beta channel release of Chrome for Android recently <a href="http://blog.chromium.org/2013/03/data-compression-in-chrome-beta-for.html">introduced an experimental data compression feature</a> which Google says will &#8220;yield substantial bandwidth savings.&#8221; Chrome&#8217;s compression is nowhere near the level of Opera&#8217;s, but it does roughly the same thing &#8212; puts a proxy server between the user and the bloated site in question and then applies various speed improvements like using the <a href="http://www.webmonkey.com/2009/11/say__hello_world__to_spdy__a_successor_to_http-2/">SPDY protocol</a> and compressing images with WebP.</p>
<p>To turn on the compression head to <code>chrome:flags</code> and look for the &#8220;enable experimental data compression&#8221; option. </p>
<p>Here&#8217;s Google&#8217;s description of the various optimizations:</p>
<blockquote>
<p>For an average web page, over 60% of the transferred bytes are images. The proxy optimizes and transcodes all images to the WebP format, which requires fewer bytes than other popular formats, such as JPEG and PNG. The proxy also performs intelligent compression and minification of HTML, JavaScript and CSS resources, which removes unnecessary whitespace, comments, and other metadata which are not essential to render the page. These optimizations, combined with mandatory gzip compression for all resources, can result in substantial bandwidth savings.</p>
</blockquote>
<p>In other words, Google and Opera are doing what web developers ought to be doing but aren&#8217;t. Just like <a href="http://www.webmonkey.com/2010/06/design-for-readability-first/">developers should have been making reader-friendly pages</a>, but weren&#8217;t, so &#8220;reader&#8221; modes were born.</p>
<p>It works too. In the video embedded below Google&#8217;s Pete Le Page shows how Chrome&#8217;s new proxy options take a page from The Verge and reduce it from a husky 1.9MB to a still fat, but somewhat better 1.2MB. </p>
<p><iframe width="580" height="326" src="http://www.youtube.com/embed/TAxy4q3RP_s" frameborder="0" allowfullscreen></iframe></p>
<p>Want to make sure the internet doesn&#8217;t see your site as damage it needs to route around? Check out developer Brad Frost&#8217;s article <em><a href="http://bradfrostweb.com/blog/post/prioritizing-performance-in-responsive-design/">Prioritizing Performance in Responsive Design</a></em>, which has a ton of great advice and links, including what I think is the most important thing developers can do: <em><a href="http://bradfrostweb.com/blog/post/performance-as-design/">Treat Performance As Design</a></em>. In other words, if your site isn&#8217;t svelte and fast, it&#8217;s not well designed no matter how pretty it might look.</p>
<p>[Note: <a href="http://www.zeldman.com/2011/11/18/it-is-not-ironic/">It is not ironic</a> to post about web page bloat on a page that is, arguably, pretty bloated.]</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2013/03/mobile-browsers-help-users-avoid-bloated-webpages/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    
    <item>
        <title>A Guide to Understanding Page-Speed Tests</title>
        <link>http://www.webmonkey.com/2012/02/understanding-page-speed-tests/</link>
        <comments>http://www.webmonkey.com/2012/02/understanding-page-speed-tests/#comments</comments>
        <pubDate>Tue, 14 Feb 2012 16:33:52 +0000</pubDate>

                <dc:creator>Scott Gilbertson</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/?p=54367</guid>
        		<category><![CDATA[Web Basics]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
            <enclosure url="http://www.webmonkey.com/wp-content/uploads/2012/02/speed-light-w.jpg" type="image/jpeg" length="48000" />
                    <description><![CDATA[<div class="rss_thumbnail"><img src="http://www.webmonkey.com/wp-content/uploads/2012/02/speed-light-w.jpg" alt="A Guide to Understanding Page-Speed Tests" /></div>Before you can optimize your website you first need to understand what your page speed tests are telling you. ]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->
<div id="attachment_3840" class="wp-caption alignleft" style="width: 360px"><a href="http://www.webmonkey.com/wp-content/uploads/2012/02/473868198_0452ffe641_z.jpeg"><img src="http://www.webmonkey.com/wp-content/uploads/2012/02/473868198_0452ffe641_z-300x200.jpg" alt="" title="473868198_0452ffe641_z" width="350"  /></a><p class="wp-caption-text"><em>Photo: <a href='https://secure.flickr.com/photos/91369701@N00/473868198/sizes/z/in/photostream/'>tobias.munich</a>/Flickr</em></p></div>
<p>Anyone who&#8217;s ever tried to optimize a website has faced the very basic question &#8212; how long does your site take to load? </p>
<p>The answer seems like it would be easy to discover: Load your site in a page speed crawler like <a href="http://www.webpagetest.org/">WebPagetest</a> and soon you&#8217;ll have your numbers. But that&#8217;s just it; you won&#8217;t have <em>a number</em>, you have <em>numbers</em> and figuring out which numbers to listen to is trickier than you might think.</p>
<p>Strangeloop&#8217;s Joshua Bixby recently tackled the performance metric question in a blog post titled <a href="http://www.webperformancetoday.com/2012/02/13/non-geeky-guide-to-performance-measurement/">a Non-Geeky Guide to Understanding Performance Measurement Terms</a>. The whole article is well worth reading, but perhaps the best advice is to make a video of the page load. &#8220;If you want to get a ground-zero look at your site’s performance,&#8221; writes Bixby, &#8220;capturing videos and filmstrip views of your pages&#8217; load times are one of the best ways to go.&#8221;</p>
<p>The filmstrip view Bixby refers to is part of the WebPagetest results and shows what the visitor sees in a progressive series of page captures. To create a filmstrip or video test of your website, head over to <a href="http://www.webpagetest.org/">WebPagetest</a> and select the &#8220;visual comparison&#8221; tab.</p>
<p>Some common performance mistakes Bixby cautions against include using &#8220;response time&#8221; and &#8220;load time&#8221; interchangeably and &#8220;not realizing that &#8216;response time&#8217; can mean any number of completely different things.&#8221;</p>
<p>To help those unfamiliar with the nuances of loading metrics, Bixby then breaks down and defines all the terms, including what exactly is meant by &#8220;start render&#8221; or &#8220;time to first byte,&#8221; as well as some caveats to bear in mind when going over the numbers for your website.</p>
<p>While Bixby&#8217;s post can be extremely helpful, especially to those who are just starting out in the often confusing world of website optimization, bear in mind that testing sites like WebPagetest are no substitute for real-world tests. &#8220;As a matter of due course, you always need to gather large batches of data and rely on median numbers,&#8221; writes Bixby, &#8220;but you also need to periodically get under the hood and take a real-world look at how your pages behave for real users.&#8221;</p>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2012/02/understanding-page-speed-tests/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>Chrome is Fast, But Not That Fast</title>
        <link>http://www.webmonkey.com/2008/09/chrome_is_fast__but_not_that_fast/</link>
        <comments>http://www.webmonkey.com/2008/09/chrome_is_fast__but_not_that_fast/#comments</comments>
        <pubDate>Wed, 03 Sep 2008 16:51:39 +0000</pubDate>

                <dc:creator>Adam Duvander</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/chromeisfastbutnotthatfast</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[speed]]></category>
        <description><![CDATA[Just how fast is Google&#8217;s Chrome browser? JavaScript performance-lover (and Mozilla employee) John Resig ran some tests that show Chrome may be fast, but other browsers aren&#8217;t that far behind. When Google released Chrome, it included benchmarks that show its browser zipping away from the competition at light speed. There&#8217;s no doubt Chrome is fast [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled -->Just how fast is Google&#8217;s Chrome browser? JavaScript performance-lover (and Mozilla employee) John Resig ran some tests that show Chrome may be fast, but <a href="http://ejohn.org/blog/javascript-performance-rundown/">other browsers aren&#8217;t that far behind</a>.</p>
<p>When <a href="http://www.webmonkey.com/blog/Google_Takes_On_IE__Firefox_With_Chrome_Web_Browser">Google released Chrome</a>, it included benchmarks that show its browser zipping away from the competition at light speed. There&#8217;s no doubt Chrome is fast and we think it&#8217;s <a href="http://www.webmonkey.com/blog/How_Chrome_Changed_the_Web_Overnight">already changed the web</a>. It seems, like with most statistics, it all depends whose benchmarks you believe.</p>
<p>Resig works for the company that creates the rival Firefox browser, so you might take his results with a grain of salt. But unlike Google&#8217;s charts, Resig&#8217;s don&#8217;t show one browser incredibly faster than others (except for Internet Explorer, the obvious slow-poke).</p>
<p><img class="blogimg" src="http://howto.wired.com/mediawiki/images/Chromeperformance-sunspider.png" alt="SunSpider test of browsers" class="full" /></p>
<p>According to Resig, Chrome really shines in the recursion-heavy benchmarks Google provided. Even the above tests are JavaScript-only, and don&#8217;t include DOM manipulations, the basis for a lot of new web interfaces. To test this, Resig used Dromaeo, a Mozilla-created project. Again, put the bias detector on.</p>
<p><img class="blogimg" src="http://howto.wired.com/mediawiki/images/Chromeperformance-dromaeo.png" alt="Dromaeo test of browsers" class="full" /></p>
<p>The results show Chrome is still fast, though bested by its WebKit cousin, Safari. Firefox is close behind, especially when TraceMonkey (no relation!), its <a href="http://www.webmonkey.com/blog/Firefox_3DOT1:_Speeding_Up_the_Web_With_Supercharged_JavaScript">JavaScript supercharger coming in 3.1</a> is included. Resig points out that TraceMonkey has been in development for two months, while Google&#8217;s V8 engine apparently represents two years of work.</p>
<p>Yes, Chrome is fast, but it may not be <em>that</em> fast. For now, it&#8217;s probably best to assume everyone&#8217;s stats are a little skewed in their own direction. Don&#8217;t be surprised if Microsoft comes out with their own benchmarks that show Internet Explorer is faster than all other browsers. Okay, be a little surprised.</p>
<p>Possibly the best thing that could come from the release of Chrome is that all browsers&#8211;yes, including the behemoth from Redmond&#8211;pay attention to the performance needed to run today&#8217;s web apps.</p>
<p><strong>See also:</strong></p>
<ul>
<li><a href="http://www.webmonkey.com/blog/Firefox_3_Trounces_IE__Opera_and_Safari_in_Memory_Tests">Firefox 3 Trounces IE, Opera and Safari in Memory Tests</a></li>
<li><a href="http://www.webmonkey.com/blog/Speed_Freak_Tells_Your_Mac_What_to_Do_First">Speed Freak Tells Your Mac What to Do First</a></li>
<li><a href="http://www.webmonkey.com/blog/Safari_Update_Continues_Pioneering_Support_for_HTML_5">Safari Update Continues Pioneering Support for HTML 5</a></li>
<li><a href="http://www.webmonkey.com/blog/Resig_Brings_Structure_to_Firebug">Resig Brings Structure to Firebug</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/09/chrome_is_fast__but_not_that_fast/feed/</wfw:commentRss>
        <slash:comments>1</slash:comments>

        
    </item>
    
    <item>
        <title>Firebug Flies Out of Beta</title>
        <link>http://www.webmonkey.com/2008/08/firebug_flies_out_of_beta/</link>
        <comments>http://www.webmonkey.com/2008/08/firebug_flies_out_of_beta/#comments</comments>
        <pubDate>Tue, 26 Aug 2008 17:14:26 +0000</pubDate>

                <dc:creator>Adam Duvander</dc:creator>

        <guid isPermaLink="false">http://www.webmonkey.com/blog/firebugfliesoutofbeta</guid>
        		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[firebug]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[performance]]></category>
        <description><![CDATA[If you&#8217;ve been waiting for an official release to install the latest Firebug, wait no more. Version 1.2 of the popular web developer extension for Firefox is no longer in beta. You can download Firebug at the Firefox add-ons site. John Resig, one of the new Firebug team members, has a great rundown on what&#8217;s [...]]]></description>

            <content:encoded><![CDATA[<p><!-- wpautop enabled --><img class="blogimg" src="http://blog.wired.com/photos/uncategorized/2008/04/08/bug.jpg" alt="Firebug logo" />If you&#8217;ve been waiting for an official release to install the latest Firebug, wait no more. Version 1.2 of the popular web developer extension for Firefox is no longer in beta. You can <a href="https://addons.mozilla.org/en-US/firefox/addon/1843">download Firebug</a> at the Firefox add-ons site.</p>
<p>John Resig, one of the <a href="http://www.webmonkey.com/blog/Firebug_Gets_Dedicated_Team">new Firebug team</a> members, has a great <a href="http://ejohn.org/blog/firebug-12-released/">rundown on what&#8217;s new</a>. Resig is always on the lookout for performance issues and he brings up an important one with JavaScript debugging. Whenever script debugging is on anywhere, <em>every</em> page runs JavaScript about 25% slower, even those without Firebug enabled. Now you can right-click (or ctrl-click) the Firebug icon and choose &#8220;suspend Firebug&#8221; when you&#8217;re done using the script console. Expect the Firebug team to look into this performance issue.</p>
<p>Those who haven&#8217;t been <a href="http://www.webmonkey.com/blog/Latest_Firebug_Beta_Works_in_Firefox_3">enjoying the beta</a> will need to completely remove the previous version before installing Firebug 1.2. Otherwise, the update is just a click (maybe three) away. If for some reason you&#8217;ve avoided Firefox 3, the new Firebug even works in Firefox 2, but <a href="http://www.webmonkey.com/blog/Why_You_Should_Download_Firefox_3_Right_Now">you&#8217;re still missing out on FF3</a>.</p>
<p>Want to get down to business with Firebug and learn how to use Firebug extensions, too? We have an <a href="/2010/02/Build_Better_Pages_With_Firebug">excellent Firebug tutorial</a>.</p>
<p><strong>See also:</strong></p>
<ul>
<li><a href="http://www.webmonkey.com/blog/Resig_Brings_Structure_to_Firebug">Resig Brings Structure to Firebug</a></li>
<li><a href="http://www.webmonkey.com/blog/The_Five_Best_Firebug_Extensions">The 5 Best Firebug Extensions</a></li>
<li><a href="http://www.webmonkey.com/blog/How_to_Create_a_Firebug_Extension">How to Create a Firebug Extension</a></li>
</ul>
<div id='linker_widget' class='contextly-widget'></div>]]></content:encoded>
            <wfw:commentRss>http://www.webmonkey.com/2008/08/firebug_flies_out_of_beta/feed/</wfw:commentRss>
        <slash:comments>0</slash:comments>

        
    </item>
    </channel>
</rss>
