<?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>权记 &#187; Firefox</title>
	<atom:link href="http://www.quanlei.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quanlei.com</link>
	<description>一个关于我们生活点滴的网站，一个记录我们酸甜苦辣的日志。</description>
	<lastBuildDate>Sun, 06 Jun 2010 01:10:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Firefox下的另一款同步插件- Weave Sync</title>
		<link>http://www.quanlei.com/2010/01/firefox-weave/</link>
		<comments>http://www.quanlei.com/2010/01/firefox-weave/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 06:16:42 +0000</pubDate>
		<dc:creator>小权</dc:creator>
				<category><![CDATA[随记]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[sync]]></category>
		<category><![CDATA[weave]]></category>
		<category><![CDATA[xmarks]]></category>

		<guid isPermaLink="false">http://www.quanlei.com/?p=1230</guid>
		<description><![CDATA[相信使用Firefox的网友都知道Xmarks这个插件吧，用于同步书签的，方便之处自然不用说了，可惜GFW把人家给墙了，鄙视GFW。 今天给大家介绍一款新的同步插件 &#8211; Weave Sync， Mozilla自家的插件，和Xmarks很有一拼，看看截图就知道它能干什么了。 可以同步书签，密码，配置，历史记录，甚至是你打开的Tab。 Weave Sync 默认是通过Mozilla的服务器进行同步的。如果您希望同步资料到您自己服务器上，Mozilla提供有关设置自己服务器的配置。 安装地址：Weave Sync 推荐 Firefox 3.5+ 上安装使用]]></description>
			<content:encoded><![CDATA[<p>相信使用Firefox的网友都知道Xmarks这个插件吧，用于同步书签的，方便之处自然不用说了，可惜GFW把人家给墙了，鄙视GFW。</p>
<p>今天给大家介绍一款新的同步插件 &#8211; Weave Sync， Mozilla自家的插件，和Xmarks很有一拼，看看截图就知道它能干什么了。</p>
<p><a href="http://www.quanlei.com/wp-content/uploads/2010/01/weave_sync.jpg"><img class="aligncenter size-full wp-image-1231" title="weave_sync" src="http://www.quanlei.com/wp-content/uploads/2010/01/weave_sync.jpg" alt="" width="501" height="208" /></a></p>
<p>可以同步书签，密码，配置，历史记录，甚至是你打开的Tab。</p>
<p>Weave Sync 默认是通过Mozilla的服务器进行同步的。如果您希望同步资料到您自己服务器上，Mozilla提供有关设置自己服务器的配置。</p>
<p>安装地址：<a href="https://addons.mozilla.org/en-US/firefox/addon/10868">Weave Sync</a> </p>
<p>推荐 Firefox 3.5+ 上安装使用</p>
]]></content:encoded>
			<wfw:commentRss>http://www.quanlei.com/2010/01/firefox-weave/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>本地图片预览(支持IE6，IE7，IE8， Firefox3)</title>
		<link>http://www.quanlei.com/2010/01/view-picture-on-local-machine/</link>
		<comments>http://www.quanlei.com/2010/01/view-picture-on-local-machine/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 14:11:09 +0000</pubDate>
		<dc:creator>小权</dc:creator>
				<category><![CDATA[前端开发]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[Demo]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[本地图片预览]]></category>
		<category><![CDATA[浏览器]]></category>

		<guid isPermaLink="false">http://www.quanlei.com/?p=1162</guid>
		<description><![CDATA[最近在Web项目开发过程中遇到的本地图片预览的需求，虽然最后因为其他原因没能使用，但是也算有些了解，整理出来。 这里我们按浏览器分，主要包括IE6，IE7/8 和Firefox3， 不包含Opera，Safari和Chrome，这三个基本上需求很小，没有研究。 总结一下就是： IE6下可以直接从file的value获取图片路径来显示预览。 IE7和IE8下通过select获取file的图片路径，再用滤镜来显示预览。 FireFox下调用file的getAsDataURL方法获取Data URI数据来显示预览。 下面是一个完整的Demo： &#60;html&#62; &#60;head&#62; &#60;script src=&#34;http://deepliquid.com/projects/Jcrop/js/jquery.min.js&#34;&#62;&#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;input type=&#34;file&#34; id=&#34;picture&#34; name=&#34;picture&#34; size=&#34;35&#34; value=&#34;&#34; onchange=&#34;setImg(this)&#34;/&#62; &#60;div id=&#34;preview_fake&#34; style=&#34;margin-left: 50px&#34;&#62; &#60;/div&#62; &#60;img id=&#34;preview_size_fake&#34;/&#62; &#60;style type=&#34;text/css&#34;&#62; #preview_fake{ /* 该对象用于在IE下显示预览图片 */ filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale); } #preview_size_fake{ /* 该对象只用来在IE下获得图片的原始尺寸，无其它用途 */ filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image); visibility:hidden; } &#60;/style&#62; &#60;script type=&#34;text/javascript&#34;&#62; function setImg(obj){ if( !obj.value.match( /.jpg&#124;.gif&#124;.png&#124;.bmp/i ) ){ [...]]]></description>
			<content:encoded><![CDATA[<p>最近在Web项目开发过程中遇到的本地图片预览的需求，虽然最后因为其他原因没能使用，但是也算有些了解，整理出来。</p>
<p>这里我们按浏览器分，主要包括IE6，IE7/8 和Firefox3， 不包含Opera，Safari和Chrome，这三个基本上需求很小，没有研究。</p>
<h3>总结一下就是：</h3>
<blockquote><p>IE6下可以直接从file的value获取图片路径来显示预览。<br />
IE7和IE8下通过select获取file的图片路径，再用滤镜来显示预览。<br />
FireFox下调用file的getAsDataURL方法获取Data URI数据来显示预览。</p></blockquote>
<h3>下面是一个完整的Demo：</h3>
<div class="runcode">
<p><textarea name="runcode" style="overflow-y:visible;width:610px;font-size:12px" class="runcode_text" id="runcode_cZOTfd">
&lt;html&gt;
&lt;head&gt;
&lt;script src=&quot;http://deepliquid.com/projects/Jcrop/js/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;input type=&quot;file&quot; id=&quot;picture&quot; name=&quot;picture&quot; size=&quot;35&quot; value=&quot;&quot; onchange=&quot;setImg(this)&quot;/&gt;
&lt;div id=&quot;preview_fake&quot; style=&quot;margin-left: 50px&quot;&gt;
&lt;/div&gt;
&lt;img id=&quot;preview_size_fake&quot;/&gt;
&lt;style type=&quot;text/css&quot;&gt;
        #preview_fake{
            /* 该对象用于在IE下显示预览图片
            */
            filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=scale);
        }
        #preview_size_fake{
            /* 该对象只用来在IE下获得图片的原始尺寸，无其它用途
            */
            filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod=image);
            visibility:hidden;
        }
&lt;/style&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    function setImg(obj){
        if( !obj.value.match( /.jpg|.gif|.png|.bmp/i ) ){
            alert('图片格式无效！');
            return false;
        }
        $(&quot;#preview_fake&quot;).empty();
        var img = document.createElement(&quot;img&quot;);
        img.setAttribute(&quot;src&quot;, &quot;&quot;);
        img.setAttribute(&quot;id&quot;, &quot;preview&quot;);
        document.getElementById(&quot;preview_fake&quot;).appendChild(img);
        if($.browser.msie){
           if($.browser.version == 6.0){
              $(&quot;#preview&quot;).attr(&quot;src&quot;,obj.value);
           }else{
              var objPreview = document.getElementById('preview' );
              var objPreviewFake = document.getElementById('preview_fake' );
              var objPreviewSizeFake = document.getElementById('preview_size_fake' );
              obj.select();
              var imgSrc =document.selection.createRange().text;
              objPreviewFake.filters.item('DXImageTransform.Microsoft.AlphaImageLoader').src= imgSrc;
              objPreviewSizeFake.filters.item('DXImageTransform.Microsoft.AlphaImageLoader').src= imgSrc;
              autoSizePreview(objPreviewFake,objPreviewSizeFake.offsetWidth,objPreviewSizeFake.offsetHeight );
              objPreview.style.display ='none';
           }
        }
        if($.browser.mozilla){
            $(&quot;#preview&quot;).attr(&quot;src&quot;,obj.files[0].getAsDataURL());
        }
        if($.browser.opera){
            alert(&quot;暂时不支持Opera浏览器&quot;);
        }
        if($.browser.safari){
            alert(&quot;暂时不支持Safari浏览器&quot;);
        }
    }
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</textarea></p>
<script type="text/javascript">function changeTsize(){document.getElementById("runcode_cZOTfd").style.height = document.getElementById("runcode_cZOTfd").scrollHeight + "px";}window.setTimeout(changeTsize,0);</script><p><input type="button" value="Run" class="runcode_button" onclick="runcode_open_new('runcode_cZOTfd');"/> <input type="button" value="Copy" class="runcode_button" onclick="runcode_copy('runcode_cZOTfd');"/> <input type="button" value="Save As" class="runcode_button" onclick="saveCode('runcode_cZOTfd','runcode_cZOTfd');"/> Tips:You can change the code before run.</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.quanlei.com/2010/01/view-picture-on-local-machine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>中国移动的网站能不能再做的烂点呢？</title>
		<link>http://www.quanlei.com/2009/11/the-web-of-cmcc-so-bad/</link>
		<comments>http://www.quanlei.com/2009/11/the-web-of-cmcc-so-bad/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 04:42:27 +0000</pubDate>
		<dc:creator>小权</dc:creator>
				<category><![CDATA[随记]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[中国]]></category>
		<category><![CDATA[北京]]></category>
		<category><![CDATA[服务]]></category>
		<category><![CDATA[浏览器]]></category>
		<category><![CDATA[满意]]></category>
		<category><![CDATA[移动]]></category>
		<category><![CDATA[网站]]></category>
		<category><![CDATA[银行]]></category>

		<guid isPermaLink="false">http://www.quanlei.com/?p=937</guid>
		<description><![CDATA[我这里谈到的是中国移动北京分公司的网站，其他省市的网站没有去深入测试，估计是大同小异。 1、网站打开速度特别慢 不知道为什么中移动的网站打开超级慢，按理说中移动网站的带宽应该是没有问题的，但是不知为什么每次打开都特别慢，而且经常中断了，在不同的电脑上，不同的网络环境差不多，原因未知。相比之下看看人家中国银行的网站www.boc.cn(没有做广告的嫌疑，只是做个比较)，基本上瞬间打开，可能你会说静态网页和动态网页的区别，但是我觉得这不是根本问题，因为速度已经不是一个数量级上的差距了。有时接通10086，话务员查询时打开网站也很慢，让我听了很久音乐，可见中移动内部也是很慢的。下图是打开网站时的一个截图，四个页面有一个是中国银行的，其他三个都是中移动的，截图时间是打开后2分钟左右的样子，点击可看大图： 2、网站对浏览器的兼容性 说到这个，那是超级烂，由于很久没有使用IE5.5和IE6了，不知道中移动的网站到底对哪个浏览器的兼容性好，反正我在IE7，IE8，Firefox3.5，Google Chrome上访问都有问题，IE7和IE8好在还凑合能使用，Firefox3.5和Google Chrome简直就没法用，就连一个小小的个人网站都知道去解决网站对浏览器兼容性的问题，试想中国最大的运营商和全球最大用户群体的电信企业，网站对浏览器的兼容性做到如此之烂，过去几年了还不去优化，实在是没话可说了，只能尽量少去使用或者不用。 3、“满意100” 忘记了中移动什么时候开始喊这个口号的，但是这几个月来，中移动的服务别说100分了，60分都达不到，10086打过去，客服90%的时间全席忙，网站的在线客服也是90%以上时间满员，处于等待状态，等待就等待吧，还经常断线，再进去前面又插进去几个客户了，继续等待继续断线，无语了，我昨天为了体验这个“满意100”，花了半个多小时打10086，没有打进去，花了20多分钟进行网站客服的咨询没能成功，客户有问题，但是却无法联系中移动客服，这样的服务如何做到“满意100”呢？ 4、可能你会说，中移动服务这么烂，你为啥还用啊？ 我有选择吗？ 前几年就中移动一家独大，其他运营商的服务比移动还烂，从最近几年开始，状况好些了，其他运营商也发展起来了，可我的号码用了N年了，换个号码多不方便大家又不是不知道，要是可以携号转运营商，我立马转。 ==欢迎发表意见，欢迎转载==]]></description>
			<content:encoded><![CDATA[<p><span style="color: #800000;"><span style="font-size: xx-large;">我</span></span>这里谈到的是<a href="http://www.bj.chinamobile.com/" target="_blank"><span style="color: #800000;"><strong><span style="font-size: large;">中国移动北京分公司</span></strong></span></a>的网站，其他省市的网站没有去深入测试，估计是大同小异。</p>
<h3>1、<strong>网站打开速度特别慢</strong></h3>
<blockquote><p>不知道为什么中移动的网站打开超级慢，按理说中移动网站的带宽应该是没有问题的，但是不知为什么每次打开都特别慢，而且经常中断了，在不同的电脑上，不同的网络环境差不多，原因未知。相比之下看看人家中国银行的网站www.boc.cn(没有做广告的嫌疑，只是做个比较)，基本上瞬间打开，可能你会说静态网页和动态网页的区别，但是我觉得这不是根本问题，因为速度已经不是一个数量级上的差距了。有时接通10086，话务员查询时打开网站也很慢，让我听了很久音乐，可见中移动内部也是很慢的。下图是打开网站时的一个截图，四个页面有一个是中国银行的，其他三个都是中移动的，截图时间是打开后2分钟左右的样子，点击可看大图：</p></blockquote>
<h3><a href="http://farm3.static.flickr.com/2595/4148489473_e18feff1e3_b.jpg"><img class="aligncenter size-full wp-image-938" title="screenshot_003" src="http://farm3.static.flickr.com/2595/4148489473_e18feff1e3_b.jpg" alt="screenshot_003" width="620" height="300" /></a></h3>
<h3>2、<strong>网站对浏览器的兼容性</strong></h3>
<blockquote><p>说到这个，那是超级烂，由于很久没有使用IE5.5和IE6了，不知道中移动的网站到底对哪个浏览器的兼容性好，反正我在IE7，IE8，Firefox3.5，Google Chrome上访问都有问题，IE7和IE8好在还凑合能使用，Firefox3.5和Google Chrome简直就没法用，就连一个小小的个人网站都知道去解决网站对浏览器兼容性的问题，试想中国最大的运营商和全球最大用户群体的电信企业，网站对浏览器的兼容性做到如此之烂，过去几年了还不去优化，实在是没话可说了，只能尽量少去使用或者不用。</p></blockquote>
<h3>3、<strong>“满意100” </strong></h3>
<blockquote><p>忘记了中移动什么时候开始喊这个口号的，但是这几个月来，中移动的服务别说100分了，60分都达不到，10086打过去，客服90%的时间全席忙，网站的在线客服也是90%以上时间满员，处于等待状态，等待就等待吧，还经常断线，再进去前面又插进去几个客户了，继续等待继续断线，无语了，我昨天为了体验这个“满意100”，花了半个多小时打10086，没有打进去，花了20多分钟进行网站客服的咨询没能成功，客户有问题，但是却无法联系中移动客服，这样的服务如何做到“满意100”呢？</p></blockquote>
<h3>4、可能你会说，中移动服务这么烂，你为啥还用啊？</h3>
<blockquote><p>我有选择吗？ 前几年就中移动一家独大，其他运营商的服务比移动还烂，从最近几年开始，状况好些了，其他运营商也发展起来了，可我的号码用了N年了，换个号码多不方便大家又不是不知道，要是可以携号转运营商，我立马转。</p></blockquote>
<p><span style="color: #800000;">==欢迎发表意见，欢迎转载==</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quanlei.com/2009/11/the-web-of-cmcc-so-bad/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Install Java Plugin To Linux FireFox</title>
		<link>http://www.quanlei.com/2009/11/install-java-plugin-to-linux-firefox/</link>
		<comments>http://www.quanlei.com/2009/11/install-java-plugin-to-linux-firefox/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 03:22:50 +0000</pubDate>
		<dc:creator>小权</dc:creator>
				<category><![CDATA[Linux服务器相关]]></category>
		<category><![CDATA[技术]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubunutu]]></category>

		<guid isPermaLink="false">http://www.quanlei.com/?p=825</guid>
		<description><![CDATA[前提是保证你的Linux已经安装了相应的Java软件，如果没有安装Java, 先装安装Java，配置Java环境, 假如安装到了/usr/java/jre1.6.0_17/ 找到你的FireFox安装的目录，假如安装到了 /usr/firefox cd /usr/firfox 如果有plugins目录那就继续往下看，如果没有，mkdir plugins ln -s /usr/java/jre1.6.0_17/plugin/i386/ns7/libjavaplugin_oji.so OK，至此大功告成，测试一下，打开 http://www.java.com/zh_CN/download/installed.jsp 看看即可 ubuntu下安装这个其实很方便，firefox会自动检测并让你安装，java plugin， 但是在有些Linux环境下就需要手动了。]]></description>
			<content:encoded><![CDATA[<p><span style="color: #000000;"><span style="color: #800000;"><span style="font-size: xx-large;">前</span></span>提是保证你的Linux已经安装了相应的Java软件，如果没有安装Java, 先装安装Java，配置Java环境, 假如安装到了/usr/java/jre1.6.0_17/<br />
</span></p>
<p><span style="color: #000000;">找到你的FireFox安装的目录，假如安装到了 /usr/firefox</span></p>
<p><span style="color: #800000;"><em>cd /usr/firfox</em></span></p>
<p><span style="color: #000000;">如果有plugins目录那就继续往下看，如果没有，<span style="color: #800000;"><em>mkdir plugins</em></span></span></p>
<p><span style="color: #800000;"><em>ln -s /usr/java/jre1.6.0_17/plugin/i386/ns7/libjavaplugin_oji.so</em></span></p>
<p><span style="color: #000000;">OK，至此大功告成，测试一下，打开 <a href="http://www.java.com/zh_CN/download/installed.jsp">http://www.java.com/zh_CN/download/installed.jsp</a> 看看即可</span></p>
<p><span style="color: #000000;">ubuntu下安装这个其实很方便，firefox会自动检测并让你安装，java plugin， 但是在有些Linux环境下就需要手动了。<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quanlei.com/2009/11/install-java-plugin-to-linux-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>移动飞信和Gtalk使用的几个技巧</title>
		<link>http://www.quanlei.com/2009/09/fetion_gtalk_tip/</link>
		<comments>http://www.quanlei.com/2009/09/fetion_gtalk_tip/#comments</comments>
		<pubDate>Mon, 07 Sep 2009 04:46:06 +0000</pubDate>
		<dc:creator>小权</dc:creator>
				<category><![CDATA[随记]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gtalk]]></category>
		<category><![CDATA[飞信]]></category>

		<guid isPermaLink="false">http://www.quanlei.com/2009/09/fetion_gtalk_tip/</guid>
		<description><![CDATA[一．飞信, 估计移动用户都知道, 唯一的好处就是可以免费发短信, 其他方面几乎可以忽略了, 不过移动开发的飞信客户端基本上都是很臃肿的, 慢, 内存占用大等, 不好用, 尤其想在手机上用. 这里推荐一个飞信的使用方法, 即时飞信, 就是直接给指定用户发消息, 而避过漫长的登录验证等, 使用的是第三方Web API接口, 因此至于安全方面就只能自己去估量了. 1. https://fetionapi.appspot.com/ 2. http://sms.api.bz 3.http://www.feirobot.cn/ 有网友已经做出了手机上利用此API接口实现的即时飞信, 使用起来比较不错. WM手机用户可以看看这个: http://bbs.pdafans.com/viewthread.php?tid=794035&#38;extra=&#38;page=1 黑莓手机用户可以看看这个:http://www.berryon.com/blackberry/908.htm 还有一个Firefox插件, 也是基于上面的API开发的, 可以将网页上的信息发送到自己的手机上, 很实用. Firetion 1.0: https://addons.mozilla.org/zh-CN/firefox/addon/14016 二．Gtalk 最着它的易用性，支持在线使用，并且和Gmail 完美整合 保存聊天记录，加上Google Apps用户帐户都支持GTalk的使用，众多特点，让他越来越多的出现在我们的桌面上面。但是默认Gtalk都是支持一个实例的, 也就是在桌面默认只能登陆一个用户, 想开多个用户, 默认是不可以的. 不过现在有了个完美解决方案了： 点击Gtalk并在桌面创建一个快捷方式 (相信绝大部分朋友都已经有了) 然后再右击图标，转移到“快捷方式”标签 在“目标”栏中，原来的GTalk目标位置 后面增加“/nomutex”命令即可，比如我的： &#8220;C:\Program Files\Google\Google Talk\googletalk.exe&#8221; /nomutex 这样就可以开多个了.]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;"><span style="color: #000000;">一．飞信, 估计移动用户都知道, 唯一的好处就是可以免费发短信, 其他方面几乎可以忽略了, 不过移动开发的飞信客户端基本上都是很臃肿的, 慢, 内存占用大等, 不好用, 尤其想在手机上用.</span></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">这里推荐一个飞信的使用方法, 即时飞信, 就是直接给指定用户发消息, 而避过漫长的登录验证等, 使用的是第三方Web API接口, 因此至于安全方面就只能自己去估量了.</span></span></p>
<p><span style="font-size: small;">1. <a title="https://fetionapi.appspot.com/" href="https://fetionapi.appspot.com/" target="_blank">https://fetionapi.appspot.com/</a></span></p>
<p><span style="font-size: small;">2. <a href="http://sms.api.bz" target="_blank">http://sms.api.bz</a></span></p>
<p><span style="font-size: small;">3.<a href="http://www.feirobot.cn/" target="_blank">http://www.feirobot.cn/</a></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">有网友已经做出了手机上利用此API接口实现的即时飞信, 使用起来比较不错.</span></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">WM手机用户可以看看这个: </span><a title="http://bbs.pdafans.com/viewthread.php?tid=794035&amp;extra=&amp;page=1" href="http://bbs.pdafans.com/viewthread.php?tid=794035&amp;extra=&amp;page=1"><span style="color: #000000;">http://bbs.pdafans.com/viewthread.php?tid=794035&amp;extra=&amp;page=1</span></a></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">黑莓手机用户可以看看这个:</span><a title="http://www.berryon.com/blackberry/908.htm" href="http://www.berryon.com/blackberry/908.htm"><span style="color: #000000;">http://www.berryon.com/blackberry/908.htm</span></a></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">还有一个Firefox插件, 也是基于上面的API开发的, 可以将网页上的信息发送到自己的手机上, 很实用.</span></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">Firetion 1.0: </span><a title="https://addons.mozilla.org/zh-CN/firefox/addon/14016" href="https://addons.mozilla.org/zh-CN/firefox/addon/14016"><span style="color: #000000;">https://addons.mozilla.org/zh-CN/firefox/addon/14016</span></a></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">二．Gtalk 最着它的易用性，支持在线使用，并且和Gmail 完美整合 保存聊天记录，加上Google Apps用户帐户都支持GTalk的使用，众多特点，让他越来越多的出现在我们的桌面上面。但是默认Gtalk都是支持一个实例的, 也就是在桌面默认只能登陆一个用户, 想开多个用户, 默认是不可以的.</span></span></p>
<p><span style="font-size: small;"><span style="color: #000000;">不过现在有了个完美解决方案了：</span></span></p>
<ol>
<li><span style="font-size: small;"><span style="color: #808080;">点击Gtalk并在桌面创建一个快捷方式 (相信绝大部分朋友都已经有了) </span></span></li>
<li><span style="font-size: small;"><span style="color: #808080;">然后再右击图标，转移到“快捷方式”标签 </span></span></li>
<li><span style="font-size: small;"><span style="color: #808080;">在“目标”栏中，原来的GTalk目标位置 后面增加<strong>“/nomutex”</strong>命令即可，比如我的：<br />
&#8220;C:\Program Files\Google\Google Talk\googletalk.exe&#8221; /nomutex</span></span></li>
</ol>
<p><span style="font-size: small;"><span style="color: #000000;">这样就可以开多个了.</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.quanlei.com/2009/09/fetion_gtalk_tip/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
