Posts Tagged ‘Firefox’
-
Speed up Our Firefox Browser
So far as we know, Firefox is a powerful and easy-of-use web browser in the world. Althrough Chrome is becoming better and better, but without extension functions, Google Chrome will always be my second choice to use. Indeed, Chrome is much quicker than Firefox, while it spends more memory spaces for its SandBox model.
Recently, I saw an article talked about how to speed up firefox by editing some parameters in about:config. Let’s have a try!
Reduce the amount of RAM Firefox uses for its cache feature
1. Type “about:config” (no quotes) in the adress bar in the browser.
2. Find “browser.sessionhistory.max_total_viewer”
3. Set it’s value to “0“;(Zero)Increase the Speed at Which Firefox loads pages
1. Type “about:config” into the address bar and hit Enter.
2. Alter the entries as follows:
Set “network.http.pipelining” to “true”
Set “network.http.proxy.pipelining” to “true”
Set “network.http.pipelining.maxrequests” to some number like 10.This means it will make 10 requests at once.
3. Lastly, right-click anywhere and select New-> Integer. Name it “nglayout.initialpaint.delay” and set its value to “0“;.(Zero)
This value is the amount of time the browser waits before it acts on information it receives. If you’re using a broadband connection you’ll load pages faster now.
Optionally (for even faster web browsing) here are some more options for your about:config (you might have to create some of these entries by Right Click –> New– > Interger or Stringnetwork.dns.disableIPv6: set “false”
“content.notify.backoffcount”: set “5“; (Five)
“plugin.expose_full_path”: set “true”.
“ui.submenuDelay”: set “0; (zero)Reduce RAM usage to 10MB when Firefox is minimized:
This little hack will drop Firefox’s RAM usage down to 10 Mb when minimized:
1. Open Firefox and go to the Address Bar. Type in about:config and then press Enter.
2. Right Click in the page and select New -> Boolean.
3. In the box that pops up enter “config.trim_on_minimize”. Press Enter.
4. Now select True and then press Enter.
5. Restart Firefox.That’s all! After my trying, I think it really faster a little bit than before. Great!
The original link is: http://www.dagorret.net/2009/03/25/a-handful-of-firefox-tweaks-that-will-double-your-browser-speed/
-
在IE6里准确显示较小高度的DIV层
在做网页设计的时候,尤其是给咱们国内做网站,一定要考虑到兼容性的问题。Firefox、Chrome、Safari、IE8这类对于CSS标准支持的比较好的网站,基本上测试一种就差不多行了(一些Javascript除外)。但是对于IE6、IE7这两个浏览器,要区别对待。特别是IE6,支持CSS一点都不好,自己说了算,但是在国内却有数量庞大的电脑依然在使用IE6浏览器。我想这与安装了盗版XP并禁用了自动更新功能有关吧。
转到今天的主要话题。在给一个朋友做网站的时候,发现有个小问题。在我定义的一个div层中,只有一条横线,高度为4px。在IE8、Firefox、Chrome中均显示正确,但是在IE6中却显示出了三条线,而这个div的高度也增加为15px。于是我将高度设成10px,依然不见效,但是设置成30px的时候,高度就增加出来了。这说明这个div盒子里面并不是空的,尽管我在<div></div>中间连一个空格也没有。
没错,这就是字体虚占位了。IE6默认按照字体大小min-height了一下这个div层,才会出现如此的问题。所以我们将计就计,把字体大小设成0不就好了?再加上一个overflow的hidden,一切就完美了。
建议定义一个css的class来处理这类的问题,我是这么干的:
.miniboxhack{font-size:0; overflow:hidden;}
问题解决了。
-
技巧:在IE, Safari 上使用Foxmarks 书签同步扩展
从网上看到的一篇文章,对我很有用,相信很多人也都需要,转贴来,呵呵。
源地址:http://www.cnbeta.com/articles/76382.htm
这下子,我们可以同步IE、Firefox和Safari中的书签了。真正实现了书签“大一统”。不容易啊。
Foxmarks 原本是Firefox 上的书签同步扩展, 它可以将你的书签以及密码全部同步到服务器上, 就算重装或是换了电脑都不必担心书签遗失和密码忘记的问题.
来自Lifehacker的消息称, Foxmarks 已经开始支援其他浏览器IE, Safari. 这样就算换了电脑浏览器不是Firefox 也一样能同步到熟悉的书签.
Foxmarks 在IE, Safari 的浏览器上提供了和Firefox 基本相同的功能, 不过目前还是有一些变化的:
首先, 没有密码同步功能. 呃, 不过没有关系, 我们可以找Dropbox 的密码同步功能来解决这个问题.
另外, 你也不能同步到自己的服务器上去. 我们知道在Firefox 里是可以选择同步到自己搭建的服务器上的, 不过对大多数使用者来说, 这个功能还是很少用到的啦.
还有, 就是如果要和iPhone 同步书签的话, 必须使用Mac Safari. 不过当初使用Firefox 也不能同步啦, 所以这可以算是个新添的吧.
如果你想用Foxmarks 对IE, Safari 进行书签同步, 你可以到官网下载Foxmarks for IE, Safari(猛击这里下崽儿).
或请直接猛击图标下崽儿:
-
batch of wallpapers about Firefox
Share some interesting and wonderful wallpapers, and they are all about Firefox and Thunderbird.
Hope you like them!
And the original link: http://www.cnbeta.com/articles/60124.htm
-
解决IE6、IE7在CSS中设置最小高度遇到的问题
在开发一个某公司的网页界面时,遇到了这样的问题:当设置某一个区域的最小高度为某个值的时候,在Firefox、IE6以及IE7中的表现并不一样。如果只是设定了min-height值,那么在IE6中不能识别;但设定了height值,在IE7和Firefox中,位置就会固定了。这是一个很大的问题。那么为了协调各个浏览器和各个版本,我们怎样做才能解决最小高度的问题呢?
我在网络上寻找了一些相关资料,有一种解决方法比较好:
.distance {
height:auto!important;
height:100px;
min-height:100px;
}!import(优先)标签在IE6中并不认识,所以在IE6中上述代码会被理解成为:
height:100px;
min-height:100px;而在IE7中则是:
height:auto;
min-height:100px;在这里,我们所利用的特性是:
- IE6不能识别 !important 标签;
- IE6不能识别 min-height 标签;
- IE6中的高度(height)标签的最终效果等同于IE7与Firefox浏览器中的最小高度(min-height)标签;
最终便可以解决上述问题。
-
Set Firefox 3 to Launch Gmail for mailto Links
Forward from web. Just enjoy that!~
In today’s earlier list of five extensions you won’t need in Firefox 3, we said you won’t need any special toolbars, third-party apps, Greasemonkey scripts, or extensions to get Firefox to use webapps to open certain types of links. This means that when you click on an email address that uses the standardmailto:email protocol, Firefox 3 itself can launch Gmail instead of a desktop app. By default, the Firefox RC 1 only comes with Yahoo Mail as a possiblemailto:link handler, which leaves Gmail users out in the cold—unless you know how to set it up by hand. Here’s how to configure Firefox 3 to use Gmail as your defaultmailto:application handler.Ready to set up Gmail? Roll up those sleeves.
- Open Gmail in Firefox.
- In the tab where Gmail is loaded, copy and paste the following snippet of JavaScript into your address bar:
javascript:window.navigator.registerProtocolHandler(“mailto”,“https://mail.google.com/mail/?extsrc=mailto&url=%s”,“GMail”)
If you are a Google Apps user, use this code instead, but replace example.com with your domain name:
javascript:window.navigator.registerProtocolHandler(“mailto”,“https://mail.google.com/a/example.com/mail/?extsrc=mailto&url=%s”,“GMail”)
- Firefox 3 will ask permission to add Gmail as default mailto handler. Click the Add Application button, as shown.
Update, 6÷18÷08: Thanks to a great tip from a reader Andrew, the instructions above have been shortened considerably. Thanks, Andrew!
Now, if you click a
mailto:link—try the tips link on Lifehacker’s sidebar—Firefox 3 will ask which application you want to use. Choose Gmail, and select “Remember my choice for mailto links” to set the preference permanently.**Updated 5/21** If this trick doesn’t work for you, go into
about:configand make sure thatnetwork.protocol-handler.external.mailtois set to its default value true.***Updated 5/21*** To remove the Gmail handler, in Firefox’s Tools menu, choose Options. (Mac users, go to the Preferences dialog.) In the Applications tab, search for mailto. From the drop-down of mailto handlers, choose Applications Details, as shown. Here you can select a webapp handler and Remove it using the button.
Firefox 3’s new ability to register webapps as link handlers has lots of potential usage, for everything from fax and telephone numbers to IM buddy name links. Setting up your mailto handler is just the beginning. Read more about Firefox 3 web protocol handler possibilities. Thanks, readme!
Firefox 3 Gmail web mail handler bug fixed [Digital Wanderer]
Paul’s Online Services
Dynamic Tag Cloud
WP Cumulus Flash tag cloud by Roy Tanck and Luke Morton requires Flash Player 9 or better.
Recent Posts
- AIX Storage Learning 1
- 春节快乐! Happy Spring Festival!
- Sun is to the end of life
- 为cos-html-cache插件增加页面(Page)、标签(Tag)和分类(Category)的静态化功能
- How to configure Subversion in OpenSolaris
- 转载:IIS FastCGI PHP 环境下搭建 WordPress
- 在OpenSolaris下动态绑定域名
- Goodbye 2009, Hello 2010
- This Is It
- A Morse Code Exchanger
Recent Comments
- 新视界 (New Vision) » 在OpenSolaris下动态绑定域名 on 使用ZFS打造家庭廉价数据中心
- paul on Wordpress数据库转移网址变换的方法
- 知识 on Wordpress数据库转移网址变换的方法
- WP Super Cache V0.98 and IIS7 « Anders Heie on Speed up your WordPress Blog on IIS 7 by using WP-Super-Cache
- 博沈 on This Is It
- paul on 使用ZFS打造家庭廉价数据中心
- Anonymous on OpenSolaris 上的 Samba 服务器
- Anonymous on 使用ZFS打造家庭廉价数据中心
- Anonymous on OpenSolaris 上的 Samba 服务器
- Paul on 十年前和十年后的我们







































































