30楼#
发布于:2009-08-19 17:14
我的简洁紧凑界面。
|
|
31楼#
发布于:2009-08-19 17:14
欢迎楼主自暴,精神很好
结论:属于用Firefox的初级阶段 |
|
|
32楼#
发布于:2009-08-19 17:14
....
|
|
33楼#
发布于:2009-08-19 17:14
我的
我的 |
|
34楼#
发布于:2009-08-19 17:14
show
show |
|
35楼#
发布于:2009-08-19 17:14
简洁为主,默认主题,讲标签放到最上面,去掉标题栏,去掉滚动条,vim...
简洁为主,默认主题,讲标签放到最上面,去掉标题栏,去掉滚动条,vim风格扩展
扩展39个,插件18个,平均启动时间1-2分钟 ![]() |
|
36楼#
发布于:2009-08-19 17:14
我很想知道楼主的那个检查163邮箱的插件,
|
|
37楼#
发布于:2009-08-19 17:14
自动检查邮件的扩展名字叫:WebMail Notifier
下载地址:https://addons.mozilla.org/zh-CN/firefox/addon/4490 WebMail Notifier checks your webmail accounts and notifies the number of unread emails... Supports : gmail, yahoo, hotmail, daum, naver, empas, nate and more 如果想让它支持网易免费邮箱,即163.com,126.com跟yeah.net的话,可以添加以下js脚本 我就不copy了,直接给链接: http://xiaolong.me/?p=72 只要163.com邮箱的话,看这篇: http://xiaolong.me/?p=34[url][/url] |
|
38楼#
发布于:2009-08-19 17:14
谢谢楼主啊
|
|
39楼#
发布于:2009-08-19 17:14
我下载了163的脚本,在WebMail Notifier 里user script里导入脚本,填好密码和用户名,但一直显示 not checked
,我右击检查,但什么邮件也没检查出来,怎么回事? |
|
40楼#
发布于:2009-08-19 17:14
我用的是163.com,126.com跟yeah.net三合一的脚本,现在还可以用的。可能是你没有新邮件吧,有新邮件才会显示,没有新邮件是不会显示的。还有一点,是不是你设置得不合规范,在填写用户名和密码的时候,要先选择是163的邮箱。。。
|
|
41楼#
发布于:2009-08-19 17:14
shenyixin99:我用的是163.com,126.com跟yeah.net三合一的脚本,现在还可以用的。可能是你没有新邮件吧,有新邮件才会显示,没有新邮件是不会显示的。还有一点,是不是你设置得不合规范,在填写用户名和密码的时候,要先选择是163的邮箱。。。回到原帖 我是这样做的,163单独的,三合一的我都试了,有邮件也不检查,根本就不检查,我用的是3.6的版本 |
|
42楼#
发布于:2009-08-19 17:14
我是Firefox 3.5.3版本的,WebMail Notifier是1.5.1版本的。没问题的。
|
|
43楼#
发布于:2009-08-19 17:14
确实有问题,webmail notifier 升级后,旧版的脚本就无效了。新版webmail notifier网易邮箱脚本。支持163,126和yeah邮箱。在网上找到转来的。
/*********************************************************** 网易 ***********************************************************/ var name="NetEase"; function init(){ this.loginData=["https://reg.163.com/logins.jsp", "username","password","product=163&type=1&ursname="]; this.dataURL="http://fm163.163.com/coremail/fcg/ntesdoor2?funcid=getusrnewmsgcnt&fid=1&addSubFdrs=1&language=0&style=0&template=newmsgres_urs_2008.htm&username="+this.user; this.mailURL="http://fm163.163.com/coremail/fcg/ntesdoor2?verifycookie=1&lightweight=1"; var ar=this.user.split("@"); if(ar[1]=="126.com"){ this.dataURL="http://entry.mail.126.com/cgi/ntesdoor?funcid=getusrnewmsgcnt&fid=1&addSubFdrs=1&language=0&style=0&template=newmsgres_urs_2008.htm&username="+this.user; this.mailURL="http://entry.mail.126.com/cgi/ntesdoor?verifycookie=1&lightweight=1"; }else if (ar[1]=="yeah.net"){ this.dataURL="http://entry.yeah.net/cgi/ntesdoor?funcid=getusrnewmsgcnt&fid=1&addSubFdrs=1&language=0&style=0&template=newmsgres_urs_2008.htm&username="+this.user; this.mailURL="http://entry.yeah.net/cgi/ntesdoor?verifycookie=1&lightweight=1"; } this.getCount=function(aData){ var fnd=aData.match(/var\s+res\s+=\s+(\d+);/); if(fnd){ return fnd[1]; }else{ return -1; } }; this.onResponse=function(aHttpChannel){ if(this.stage==ST_LOGIN_RES){ var cookie = aHttpChannel.getResponseHeader("Set-Cookie"); if (this.mailURL.indexOf("yeah.net")!=-1) { cookie = cookie.replace(/(domain=)\.163\.com/g,"$1.yeah.net"); var ioService = Components.classes["@mozilla.org/network/io-service;1"] .getService(Components.interfaces.nsIIOService); var uri=ioService.newURI(this.mailURL,null,null); this.cookieManager.addCookies(uri,cookie); }else if(this.mailURL.indexOf("126.com")!=-1) { cookie = cookie.replace(/(domain=)\.163\.com/g,"$1.126.com"); var ioService = Components.classes["@mozilla.org/network/io-service;1"] .getService(Components.interfaces.nsIIOService); var uri=ioService.newURI(this.mailURL,null,null); this.cookieManager.addCookies(uri,cookie); }else { this.cookieManager.addCookies(aHttpChannel.URI,cookie); } aHttpChannel.setResponseHeader("Set-Cookie", "", false); }else{ this.cookieManager.addCookies(aHttpChannel.URI,cookie); aHttpChannel.setResponseHeader("Set-Cookie", "", false); } }, this.onError=function(desc){ this.stage=this.initStage; this.webMailNotifier.setState(this.id,this.user,nsIWebMailNotifier.ST_RESET); }; } |
|
44楼#
发布于:2009-08-19 17:14
|
|