Archive for 2008 年 4 月 3 日

Keyconfig for Firefox 3

0
I’ve been happily using Firefox 3 for the past couple months. On the Mac in particular, it’s been a night and day difference performance-wise. One of the more unfortunate aspects right now is that there aren’t a lot of extensions that work with FF3 at the moment. One of those that I missed a lot was the keyconfig extension.

It hasn’t been updated for a while (and the download site is a bit on the sparse side, but it looks like the author, dorando is still active and there are directions for modifying the XPI to be compatible w/ FF3.

Since I went through the trouble of modifying the bits, I thought I’d throw it up there for those less inclined to muck around in the files. This will give an unsigned warning, but should install: keyconfig-ff3.xpi.

Modifications:

  • install.rdf modified with <maxVersion>3.0.*</maxVersion>
  • install.rdf modified to comment out <updateURL> so it can be installed w/o modifying security preferences
  • this.os.addObserver(this,"stupid-dummy",false); added to function keyconfigService()
  • document.createElement("key") changed to gDocument.createElement("key") in the keyconfig.jar!contents/keyconfig.js file

Firefox 页面滚动设置

0

打开firefox,在地址栏输入about:config

1.开启页面平滑滚动
general.smoothScroll
布尔值
当值为Ture时,打开页面平滑滚动

2.增加鼠标页面卷动行数
mousewheel.withnokey.sysnumlines
布尔值
先设置值为False时,禁用页面滚动行数为操作系统设置值

mousewheel.withnokey.numlines 设定了滚动的行数,推荐设置为7。
整数型
设置适当的整数值为滚动行数,推荐值7,

Go to Top