<?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>简单生活 -- Kevin Yang的博客 &#187; 最大化阅读空间</title>
	<atom:link href="http://www.imkevinyang.com/tags/%e6%9c%80%e5%a4%a7%e5%8c%96%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4/feed" rel="self" type="application/rss+xml" />
	<link>http://www.imkevinyang.com</link>
	<description>It&#039;s all about sharing</description>
	<lastBuildDate>Sun, 05 Feb 2012 15:37:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>4行Greasemonkey代码最大化Google Reader的阅读空间</title>
		<link>http://www.imkevinyang.com/2009/08/4%e8%a1%8cgreasemonkey%e4%bb%a3%e7%a0%81%e6%9c%80%e5%a4%a7%e5%8c%96google-reader%e7%9a%84%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4.html</link>
		<comments>http://www.imkevinyang.com/2009/08/4%e8%a1%8cgreasemonkey%e4%bb%a3%e7%a0%81%e6%9c%80%e5%a4%a7%e5%8c%96google-reader%e7%9a%84%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4.html#comments</comments>
		<pubDate>Sun, 09 Aug 2009 12:58:00 +0000</pubDate>
		<dc:creator>Kevin Yang</dc:creator>
				<category><![CDATA[工具技巧]]></category>
		<category><![CDATA[Firefox扩展]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[GoogleReader]]></category>
		<category><![CDATA[GreaseMonkey]]></category>
		<category><![CDATA[最大化阅读空间]]></category>

		<guid isPermaLink="false">http://www.imkevinyang.com/2009/08/4%e8%a1%8cgreasemonkey%e4%bb%a3%e7%a0%81%e6%9c%80%e5%a4%a7%e5%8c%96google-reader%e7%9a%84%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4.html</guid>
		<description><![CDATA[<p><font color="#ff0000">update(2009-8-13) ：修正了feedsetting下拉框元素捕获不到ID导致无法显示的问题</font></p>
<p><font color="#ff0000">udpate(2009-8-18) ：增加了使用Stylish插件的修改方法</font></p>
<p>常用<a href="http://www.imkevinyang.com/tags/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with Google">Google</a> Reader的人会发现，自己根本就不常用到<a href="http://www.imkevinyang.com/tags/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with Google">Google</a> Reader最上方提供的工具条以及快速搜索。反而这块&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><font color="#ff0000">update(2009-8-13) ：修正了feedsetting下拉框元素捕获不到ID导致无法显示的问题</font></p>
<p><font color="#ff0000">udpate(2009-8-18) ：增加了使用Stylish插件的修改方法</font></p>
<p>常用<a href="http://www.imkevinyang.com/tags/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with Google">Google</a> Reader的人会发现，自己根本就不常用到<a href="http://www.imkevinyang.com/tags/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with Google">Google</a> Reader最上方提供的工具条以及快速搜索。反而这块地方会挤占了用户的阅读空间，尤其是对于屏幕不是很大的人来说更是如此。因此我们可以利用Greasemonkey自己定制GoogleReader的界面。</p>
<pre class="csharpcode">document.getElementById(<span class="str">&quot;gbar&quot;</span>).style.display = <span class="str">&quot;none&quot;</span>;
document.getElementById(<span class="str">&quot;main&quot;</span>).style.top = <span class="str">&quot;0px&quot;</span>;
document.getElementById(<span class="str">&quot;main&quot;</span>).style.zIndex = <span class="str">&quot;10&quot;</span>;
document.getElementById(<span class="str">&quot;search&quot;</span>).style.zIndex = <span class="str">&quot;0&quot;</span>;</pre>
<p>效果如下：</p>
<p><img style="border-right-width: 0px; margin: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.imkevinyang.com/wp-content/uploads/2009/08/image_thumb7.png" width="574" height="70" />&#160;</p>
<p><a title="Firefox扩展Greasemonkey" href="http://www.imkevinyang.com/2009/07/%e3%80%90%e6%8e%a8%e8%8d%90%e3%80%91%e5%b8%b8%e7%94%a8firefox%e6%89%a9%e5%b1%95%e6%8f%92%e4%bb%b62009-3-1%e6%9b%b4%e6%96%b0.html" rel="tag" target="_blank">Greasemonkey</a>是一个非常好用的Firefox扩展，它允许你使用Javascript对网页做各种各样的修改，所做的修改在每次打开新网页的时候会自动应用，就如同网站特地为你定制的一样。如果你是一个个性化比较强的人，相信你会非常喜欢这个插件。</p>
<p>其实上面这段脚本所做的工作只是修改页面的样式而已，这种工作完全可以交由Stylish来实现。</p>
<pre class="csharpcode">@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document url(&quot;https://www.<a href="http://www.imkevinyang.com/tags/google" class="st_tag internal_tag" rel="tag" title="Posts tagged with Google">google</a>.com/reader/*&quot;) {}
#gbar{display:none !important;}
#main{top:0px;z-Index:10 !important;}
#search{z-Index:0 !important}</pre>
<p><a title="Stylish" href="http://www.imkevinyang.com/2009/07/%e3%80%90%e6%8e%a8%e8%8d%90%e3%80%91%e5%b8%b8%e7%94%a8firefox%e6%89%a9%e5%b1%95%e6%8f%92%e4%bb%b62009-3-1%e6%9b%b4%e6%96%b0.html" target="_blank">Stylish</a>也是Firefox下的一个很强的插件，它允许你为网站自定义一套符合自己喜好的CSS样式。</p>
<p align="right">——<a href="http://www.imkevinyang.com/"><em><strong>Kevin Yang</strong></em></a></p>

	标签：<a href="http://www.imkevinyang.com/tags/firefox%e6%89%a9%e5%b1%95" title="Firefox扩展" rel="tag">Firefox扩展</a>, <a href="http://www.imkevinyang.com/tags/google" title="Google" rel="tag">Google</a>, <a href="http://www.imkevinyang.com/tags/googlereader" title="GoogleReader" rel="tag">GoogleReader</a>, <a href="http://www.imkevinyang.com/tags/greasemonkey" title="GreaseMonkey" rel="tag">GreaseMonkey</a>, <a href="http://www.imkevinyang.com/categories/techarticles/toolskills-techarticles" title="工具技巧" rel="tag">工具技巧</a>, <a href="http://www.imkevinyang.com/tags/%e6%9c%80%e5%a4%a7%e5%8c%96%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4" title="最大化阅读空间" rel="tag">最大化阅读空间</a><br />

	<h4 style="background-color:#3B3B3B;border-bottom:2px groove gray;color:#F2F2F2;margin-top:20px;padding:6px 6px 6px 15px;margin:20px 0px 0px 0px">你可能对下面的文章感兴趣</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.imkevinyang.com/2010/03/android%e6%89%8b%e6%9c%ba%e5%88%9d%e4%bd%93%e9%aa%8c.html" title="Android手机初体验 (2010/03/01)">Android手机初体验</a> </li>
	<li><a href="http://www.imkevinyang.com/2010/03/g1%e6%89%8b%e6%9c%ba%e4%b8%8e%e7%ac%94%e8%ae%b0%e6%9c%ac%e5%ae%9e%e7%8e%b0wifi%e4%ba%92%e8%81%94%e5%85%b1%e4%ba%ab%e4%b8%8a%e7%bd%91.html" title="G1手机与笔记本实现Wifi互联共享上网 (2010/03/02)">G1手机与笔记本实现Wifi互联共享上网</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/12/google-analytics%e4%b8%ad%e7%9a%84uniquepageview%e5%92%8cvisits%e7%9a%84%e5%8c%ba%e5%88%ab.html" title="Google Analytics中的UniquePageView和Visits的区别 (2009/12/07)">Google Analytics中的UniquePageView和Visits的区别</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/11/google-wave%e4%b8%ba%e4%bb%80%e4%b9%88%e8%bf%99%e4%b9%88%e7%81%ab.html" title="Google Wave为什么这么火 (2009/11/14)">Google Wave为什么这么火</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/05/google%e5%92%8c%e5%be%ae%e8%bd%af%e7%9a%84%e4%b8%80%e5%a4%a7%e4%b8%8d%e5%90%8c.html" title="Google和微软的一大不同 (2009/05/06)">Google和微软的一大不同</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/03/google%e5%b7%a5%e7%a8%8b%e5%b8%88matt-cutts%e8%b0%88seo.html" title="Google工程师Matt Cutts谈SEO (2009/03/23)">Google工程师Matt Cutts谈SEO</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/03/google%e6%8e%92%e5%90%8d%e6%9b%b4%e6%96%b0.html" title="Google排名更新 (2009/03/21)">Google排名更新</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/03/google%e7%9a%84%e4%bb%b7%e5%80%bc%e8%a7%82.html" title="Google的价值观 (2009/03/07)">Google的价值观</a> </li>
	<li><a href="http://www.imkevinyang.com/2009/07/%e3%80%90%e6%8e%a8%e8%8d%90%e3%80%91%e5%b8%b8%e7%94%a8firefox%e6%89%a9%e5%b1%95%e6%8f%92%e4%bb%b62009-3-1%e6%9b%b4%e6%96%b0.html" title="【推荐】常用Firefox扩展/插件(2009-12-07更新) (2009/07/19)">【推荐】常用Firefox扩展/插件(2009-12-07更新)</a> </li>
	<li><a href="http://www.imkevinyang.com/2010/02/%e4%bd%bf%e7%94%a8feedburner%e7%83%a7%e5%88%b6rss%e6%9c%80%e5%a5%bd%e7%a6%81%e7%94%a8itemlinkclicks%e7%bb%9f%e8%ae%a1.html" title="使用FeedBurner烧制RSS最好禁用ItemLinkClicks统计 (2010/02/15)">使用FeedBurner烧制RSS最好禁用ItemLinkClicks统计</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.imkevinyang.com/2009/08/4%e8%a1%8cgreasemonkey%e4%bb%a3%e7%a0%81%e6%9c%80%e5%a4%a7%e5%8c%96google-reader%e7%9a%84%e9%98%85%e8%af%bb%e7%a9%ba%e9%97%b4.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.imkevinyang.com @ 2012-02-09 11:26:43 -->
