<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Sniff and Disable Firebug Howto (Gmail example)</title>
	<atom:link href="http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html</link>
	<description>A Web Development Blog by Joe Seifi - seifi.org</description>
	<lastBuildDate>Tue, 15 Feb 2011 05:33:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Zecc</title>
		<link>http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html/comment-page-1#comment-21380</link>
		<dc:creator>Zecc</dc:creator>
		<pubDate>Tue, 22 Dec 2009 10:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.seifi.org/ajax/sniff-and-disable-firebug-howto-gmail-example.html#comment-21380</guid>
		<description>This post hasn&#039;t been updated for the newer versions of Firebug.
The 1.4 series brought a new model of activation, which you can read about here: http://www.softwareishard.com/blog/firebug/how-to-enable-and-disable-firebug-14/

Bottom line: open the Firebug panel and click the &quot;Off&quot; button on the top right to de-activate Firebug for the current tab and domain.</description>
		<content:encoded><![CDATA[<p>This post hasn&#8217;t been updated for the newer versions of Firebug.<br />
The 1.4 series brought a new model of activation, which you can read about here: <a href="http://www.softwareishard.com/blog/firebug/how-to-enable-and-disable-firebug-14/" rel="nofollow">http://www.softwareishard.com/blog/firebug/how-to-enable-and-disable-firebug-14/</a></p>
<p>Bottom line: open the Firebug panel and click the &#8220;Off&#8221; button on the top right to de-activate Firebug for the current tab and domain.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: illusions</title>
		<link>http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html/comment-page-1#comment-21265</link>
		<dc:creator>illusions</dc:creator>
		<pubDate>Fri, 24 Jul 2009 06:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.seifi.org/ajax/sniff-and-disable-firebug-howto-gmail-example.html#comment-21265</guid>
		<description>I use Firefox 3.0.11 and firebug 1.3.3. By me do’nt exist menu disable site for firebug. :(</description>
		<content:encoded><![CDATA[<p>I use Firefox 3.0.11 and firebug 1.3.3. By me do’nt exist menu disable site for firebug. <img src='http://www.seifi.org/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mojo</title>
		<link>http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html/comment-page-1#comment-14728</link>
		<dc:creator>Mojo</dc:creator>
		<pubDate>Mon, 03 Mar 2008 23:57:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.seifi.org/ajax/sniff-and-disable-firebug-howto-gmail-example.html#comment-14728</guid>
		<description>&lt;p&gt;JAVASCRIPT update from &lt;a href=&quot;http://ajaxian.com/archives/graceful-degradation-of-firebug-console-object&quot; rel=&quot;nofollow&quot;&gt;Ajaxian&lt;/a&gt;&lt;/p&gt;
&lt;pre lang=&quot;javascript&quot;&gt;
// code yanked from the Yahoo media player. Thanks, Yahoo.
if (! (&quot;console&quot; in window) &#124;&#124; !(&quot;firebug&quot; in console)) {
    var names = [&quot;log&quot;, &quot;debug&quot;, &quot;info&quot;, &quot;warn&quot;, &quot;error&quot;, &quot;assert&quot;, &quot;dir&quot;, &quot;dirxml&quot;, &quot;group&quot;
                 , &quot;groupEnd&quot;, &quot;time&quot;, &quot;timeEnd&quot;, &quot;count&quot;, &quot;trace&quot;, &quot;profile&quot;, &quot;profileEnd&quot;];
    window.console = {};
    for (var i = 0; i &lt;names.length; ++i) window.console[names[i]] = function() {};
}
&lt;/pre&gt;
</description>
		<content:encoded><![CDATA[<p>JAVASCRIPT update from <a href="http://ajaxian.com/archives/graceful-degradation-of-firebug-console-object" rel="nofollow">Ajaxian</a></p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">// code yanked from the Yahoo media player. Thanks, Yahoo.</span>
<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span> <span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;console&quot;</span> <span style="color: #000066; font-weight: bold;">in</span> window<span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #339933;">!</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;firebug&quot;</span> <span style="color: #000066; font-weight: bold;">in</span> console<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> names <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #3366CC;">&quot;log&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;debug&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;info&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;warn&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;error&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;assert&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;dir&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;dirxml&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;group&quot;</span>
                 <span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;groupEnd&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;time&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;timeEnd&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;count&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;trace&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;profile&quot;</span><span style="color: #339933;">,</span> <span style="color: #3366CC;">&quot;profileEnd&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
    window.<span style="color: #660066;">console</span> <span style="color: #339933;">=</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
    <span style="color: #000066; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">var</span> i <span style="color: #339933;">=</span> <span style="color: #CC0000;">0</span><span style="color: #339933;">;</span> i <span style="color: #339933;">&lt;</span>names.<span style="color: #660066;">length</span><span style="color: #339933;">;</span> <span style="color: #339933;">++</span>i<span style="color: #009900;">&#41;</span> window.<span style="color: #660066;">console</span><span style="color: #009900;">&#91;</span>names<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span><span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://www.seifi.org/javascript/sniff-and-disable-firebug-howto-gmail-example.html/comment-page-1#comment-14170</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Mon, 25 Feb 2008 13:44:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.seifi.org/ajax/sniff-and-disable-firebug-howto-gmail-example.html#comment-14170</guid>
		<description>Would this work with greasemonkey? is there a different name after &quot;console&quot; for each plugin?</description>
		<content:encoded><![CDATA[<p>Would this work with greasemonkey? is there a different name after &#8220;console&#8221; for each plugin?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

