跨浏览器插件框架FireBreath安装与使用之Mac下的插件

来源:互联网 发布:nba2k17科比捏脸数据 编辑:程序博客网 时间:2024/04/30 04:15

Requirements

CMake

version 2.8.8 or later, from http://www.cmake.org/cmake/resources/software.html.
Make sure to grab the Binary distribution (cmake-ver-Darwin[64]-universal.dmg).

Apple's Xcode,

available from your Mac App Store.

Xcode's Command-Line Tools. 

To get these, first install Xcode. Then launch Xcode and click in the menu: Xcode ▸ Preferences ▸ 

Downloads. Select "Command Line Tools" and press 'Install'.

Git

Download url:

https://code.google.com/p/git-osx-installer/downloads/list?can=3&q=&sort=-uploaded&colspec=Filename+Summary+Uploaded+Size+DownloadCount

Get the source

First thing is to get the source code.

To get a copy of the source, see

http://www.firebreath.org/display/documentation/Download

A good video tutorial :

http://www.firebreath.org/display/documentation/Old+Mac+Video+Tutorial

Generate and building your own project files

1. cd firebreath-dev

2. git submodule update --init --recursive

3. ./fbgen.py

4. mv projects/ ..

5. cd ..

6. cd projects/
7. cd huobanPlugin(your plugin name)/
8. git init
9. git add *
10. git commit -m "Initial commit of new plugin"

11. cd ..
12. cd ..
13. ./firebreath-dev/prepmac.sh projects/ build/
14. open build/FireBreath.xcodeproj/   编译工程

Installing your plugin
1. cd build/
2. cd projects/
3. cd huobanPlugin/
4. cd Debug/

5. cd ~/Library/Internet Plug-Ins
6. ln -s /Users/huoban/ningxia/build/projects/huobanPlugin/Debug/huoban\ Plugin_x86_64.plugin

7. cd /Users/huoban/ningxia/build/projects/huobanPlugin/Debug/
8. cd ..
9. cd gen/
10. open FBControl.htm

 

在Chrome的地址栏中输入chrome://plugins/可查看插件的详细信息

 

 

 

That's the end.

 

 

Reference

http://www.firebreath.org/display/documentation/Building+on+Mac+OS+X#BuildingonMacOSX-BuildingtheFireBreathPlugin

http://www.firebreath.org/display/documentation/Creating+a+New+Plugin+Project

http://www.firebreath.org/display/documentation/Old+Mac+Video+Tutorial