


<?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: META inspector</title>
	<atom:link href="http://www.chromeextensions.org/webmaster-seo/meta-inspector/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/</link>
	<description>Extend Your Google Chrome Browser</description>
	<lastBuildDate>Fri, 10 Feb 2012 08:25:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: WendyMerritt</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-7230</link>
		<dc:creator>WendyMerritt</dc:creator>
		<pubDate>Thu, 31 Dec 2009 19:27:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-7230</guid>
		<description>This is a great extension but it would be better if we could toggle the screen display on and off. I do not see where this is possible. Sometimes I don&#039;t want it hogging up my lower right corner real estate and obstructing the website from view. LOL

Blessings,
Wendy</description>
		<content:encoded><![CDATA[<p>This is a great extension but it would be better if we could toggle the screen display on and off. I do not see where this is possible. Sometimes I don&#8217;t want it hogging up my lower right corner real estate and obstructing the website from view. LOL</p>
<p>Blessings,<br />
Wendy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omiod</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-4159</link>
		<dc:creator>Omiod</dc:creator>
		<pubDate>Sun, 29 Nov 2009 15:51:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-4159</guid>
		<description>After adding some more enhancements, I&#039;ll work on giving as much configuration options as possible, that&#039;s sure, I&#039;ve already some cool idea here.

The &quot;flash fix&quot; actually works on pages with flash embedded in the &quot;classic&quot; way, not via JS using SWFobject or similar...
If people embedding flash in sites would just remember to use the &quot;transparent&quot; parameter, the fix would not be needed.</description>
		<content:encoded><![CDATA[<p>After adding some more enhancements, I&#8217;ll work on giving as much configuration options as possible, that&#8217;s sure, I&#8217;ve already some cool idea here.</p>
<p>The &#8220;flash fix&#8221; actually works on pages with flash embedded in the &#8220;classic&#8221; way, not via JS using SWFobject or similar&#8230;<br />
If people embedding flash in sites would just remember to use the &#8220;transparent&#8221; parameter, the fix would not be needed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-4119</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Sun, 29 Nov 2009 10:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-4119</guid>
		<description>Actually, even the fixing code do not seems to work : flash is always display on the top on other websites (trying on a full flash website)... If I found a solution, I&#039;ll post it there.

I saw in a view-source: display of a webpage the &quot;no meta data on this page.&quot; sentence. It will be great if this kind of url can be ignored

I hope in the future version of the extension we can also customize css render of visited and no-follow links

Good luck!

Bruno</description>
		<content:encoded><![CDATA[<p>Actually, even the fixing code do not seems to work : flash is always display on the top on other websites (trying on a full flash website)&#8230; If I found a solution, I&#8217;ll post it there.</p>
<p>I saw in a view-source: display of a webpage the &#8220;no meta data on this page.&#8221; sentence. It will be great if this kind of url can be ignored</p>
<p>I hope in the future version of the extension we can also customize css render of visited and no-follow links</p>
<p>Good luck!</p>
<p>Bruno</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Omiod</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-4047</link>
		<dc:creator>Omiod</dc:creator>
		<pubDate>Sat, 28 Nov 2009 17:35:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-4047</guid>
		<description>Bruno you are great!
That code is needed to fix Flash to not go above the info-box, but if that causes so much problems, I&#039;ll remove it,

Thanks for spending your time with this extension!</description>
		<content:encoded><![CDATA[<p>Bruno you are great!<br />
That code is needed to fix Flash to not go above the info-box, but if that causes so much problems, I&#8217;ll remove it,</p>
<p>Thanks for spending your time with this extension!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-4023</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Sat, 28 Nov 2009 14:21:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-4023</guid>
		<description>I found where the bug is !

In code.js, line 129-132, there is the following code :
jQuery(&quot;object&quot;).each(function(i) {
	jQuery(this).clone().insertAfter(this);
	jQuery(this).remove();
});

Extension work when I comment :
	jQuery(this).remove();

Dunno why for is this code, but it&#039;s where the bug is</description>
		<content:encoded><![CDATA[<p>I found where the bug is !</p>
<p>In code.js, line 129-132, there is the following code :<br />
jQuery(&#8220;object&#8221;).each(function(i) {<br />
	jQuery(this).clone().insertAfter(this);<br />
	jQuery(this).remove();<br />
});</p>
<p>Extension work when I comment :<br />
	jQuery(this).remove();</p>
<p>Dunno why for is this code, but it&#8217;s where the bug is</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-3716</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Thu, 26 Nov 2009 12:58:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-3716</guid>
		<description>I try to search and find where&#039;s the bug and tell you how to repair. But for the moment, I don&#039;t have so much time...</description>
		<content:encoded><![CDATA[<p>I try to search and find where&#8217;s the bug and tell you how to repair. But for the moment, I don&#8217;t have so much time&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Truth</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-3698</link>
		<dc:creator>The Truth</dc:creator>
		<pubDate>Thu, 26 Nov 2009 09:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-3698</guid>
		<description>Very nice, UVL. TY :)</description>
		<content:encoded><![CDATA[<p>Very nice, UVL. TY <img src='http://www.chromeextensions.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UVL</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-3607</link>
		<dc:creator>UVL</dc:creator>
		<pubDate>Wed, 25 Nov 2009 18:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-3607</guid>
		<description>Thank you for the reply, I&#039;ve tried, but can&#039;t see problems with the extension + Reader.
I&#039;ve added a a support page at Google Code ( http://code.google.com/p/metainspector/issues/list ) so users can post issues.</description>
		<content:encoded><![CDATA[<p>Thank you for the reply, I&#8217;ve tried, but can&#8217;t see problems with the extension + Reader.<br />
I&#8217;ve added a a support page at Google Code ( <a href="http://code.google.com/p/metainspector/issues/list" rel="nofollow">http://code.google.com/p/metainspector/issues/list</a> ) so users can post issues.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruno</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-3592</link>
		<dc:creator>Bruno</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:39:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-3592</guid>
		<description>Google reader isn&#039;t loading when the extension is active (using chrome 4.0.249.11)

Message from reader :

&quot;This is taking longer than usual. Try reloading the page.

If that doesn&#039;t work, you can:
Try using https.
Try disabling offline support.
Try logging out.
Clear your browser cache and try again.
For more troubleshooting tips, visit the help center.&quot;

And actually, after 5 minutes content still not loaded and disabling extension make Greader work</description>
		<content:encoded><![CDATA[<p>Google reader isn&#8217;t loading when the extension is active (using chrome 4.0.249.11)</p>
<p>Message from reader :</p>
<p>&#8220;This is taking longer than usual. Try reloading the page.</p>
<p>If that doesn&#8217;t work, you can:<br />
Try using https.<br />
Try disabling offline support.<br />
Try logging out.<br />
Clear your browser cache and try again.<br />
For more troubleshooting tips, visit the help center.&#8221;</p>
<p>And actually, after 5 minutes content still not loaded and disabling extension make Greader work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UVL</title>
		<link>http://www.chromeextensions.org/webmaster-seo/meta-inspector/comment-page-1/#comment-3589</link>
		<dc:creator>UVL</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:31:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.chromeextensions.org/?p=2554#comment-3589</guid>
		<description>I&#039;m using it without any problem. What do you mean with crash?
The entire tab crashes, or Google Reader shows an error?</description>
		<content:encoded><![CDATA[<p>I&#8217;m using it without any problem. What do you mean with crash?<br />
The entire tab crashes, or Google Reader shows an error?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.chromeextensions.org @ 2012-02-10 09:35:28 -->
