在最新版火狐FF5、FF6中使用FireGestures手势插件

个人觉得FireGestures 是最好用的手势插件,比chrome、maxthon、opera的都好用。

所以无论火狐官网发新闻还是发微博说FF5出来了什么的,本着“不能用手势就不更新”的原则,用了FF4很久了。

 

今天周末OT,同时说手势插件写着:

Latest Version: 1.6.5
Released on: 2011-06-18
Works with: Firefox 3.5 - 5.*

 

结果到了官网插件页面 ,还是不能在5.0上用。

这下真的怒了,先到github上确认源代码是支持5.0 。作者也够狠啊,就改了两个字符。

 

再来就是问问google:how to build firefox addons 。好了,终于找到一个只需要7-zip就可以构建的例子 。

 

不过原文件中的build.bat在我的电脑上无法把firegestures插件正确编译,所以做了一下修改:

set path=D:/Soft/7-Zip;%path% set x=firegestures xcopy %x% build /i /e REM xcopy build/content build/chrome/content /i /e REM xcopy build/locale build/chrome/locale /i /e REM xcopy build/skin build/chrome/skin /i /e REM rmdir /s /q build/content REM rmdir /s /q build/locale REM rmdir /s /q build/skin REM cd build/chrome REM 7z a -tzip "%x%.jar" * -r -mx=0 REM cd ../.. REM rmdir /s /q build/chrome/content REM rmdir /s /q build/chrome/locale REM rmdir /s /q build/chrome/skin replace chrome.manifest build cd build 7z a -tzip "%x%.xpi" * -r -mx=9 cd .. move build/%x%.xpi %x%.xpi rmdir /s /q build pause

 

生成的.xpi文件很容易安装,在FF中按下ctrl+shift+a(插件管理),再把xpi拖进去就可以了。

网友提醒,我上传了自己的build目录,http://download.csdn.net/source/3378206,目录里的xpi文件是支持FF6.0、5.0安装的。

 

你可能感兴趣的:(build,firefox,path,opera,chrome,google,开源文化,Mozilla,Firefox)