如何创建快速最小的 Firefox 扩展?
开始开发 Firefox 扩展所需的最低基本设置是什么?
What the minimum basic setup required to begin developing a Firefox extension?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
开始开发 Firefox 扩展所需的最低基本设置是什么?
What the minimum basic setup required to begin developing a Firefox extension?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
注意事项:为了防止扰乱您的默认 Firefox 体验,请在新创建的一次性测试帐户上尝试以下提示。
第 1 步:创建一个新的 Firefox 配置文件。 为此,您需要通过命令行选项调用配置文件管理器:
单击配置文件管理器的“创建配置文件”按钮,这将调用一个向导。 为配置文件命名。 使用“选择文件夹”按钮并将配置文件保存在适当命名的文件夹中。 我们将在这个文件夹中创建快速而肮脏的 Firefox 扩展。
步骤 2:将目录更改为步骤 1 中创建的配置文件文件夹中的“extensions”文件夹。现在我们需要为 Firefox 扩展指定一个全局唯一的名称。 类似于电子邮件的名称就足够了。 例如,[电子邮件受保护]为扩展名起一个足够好的名字。 在“扩展”文件夹下,创建一个文件夹,其名称为刚刚选择的唯一名称。
步骤 3:创建文件 chrome.manifest 和 install.rdf。 您可以将示例复制粘贴到此处,并适当更改名称和描述。
chrome.manifest:
和 install.rdf:
步骤 4 创建名为 chrome 的文件夹,并在该文件夹中创建名为 test.txt 的文本文件。 文件夹中的文件可以通过 chrome url 访问,例如 chrome://1mffext/content/test.txt
现在,最低限度的扩展已准备就绪。 常规 html/javascript 文件可用于创建所需的功能。
测试扩展:
调用 Firefox 以使用上面创建的配置文件。
我创建了一个 googlecode 项目来共享按照上述步骤创建的结果代码。 代码和运行脚本可在 Just a Minute Firefox Extension
Sim 上获取-OnDemand- 个人虚拟世界即服务的启动器应用程序是一个打包的应用程序示例,使用此方法进行分发。
Precaution: In order to prevent messing with your default Firefox experience, try the tip below on a newly created disposable test account.
Step 1: Create a new Firefox profile. For this you need to invoke the Profile Manager via command line option:
Click on the 'Create Profile' button of the Profile Manager, which will invoke a wizard. Give the profile a name. Use the 'Choose Folder' button and save the profile in a appropriately named folder. This folder is where we are going to create our quick and dirty Firefox extension.
Step 2: Change directory to 'extensions' folder within the profile folder created in Step 1. Now we need to give the Firefox extension a globally unique name. Email-like names are good enough for that. For example, [email protected] will be good enough name for the extension. Under the 'extensions' folder, create a folder with its name as the just chosen unique name.
Step 3: Create files chrome.manifest and install.rdf. You can copy paste the sample here with the names, description altered appropriately.
chrome.manifest:
and install.rdf:
Step 4 Create folder called chrome and create a text file called test.txt within the folder. files in the folder will be accessible via chrome url like chrome://1mffext/content/test.txt
Now the bare minimum extension is ready. Regular html/javascript files can be used to create the functionality desired.
Testing the Extension:
Invoke firefox to use the profile created above.
I have created a googlecode project to share the resultant code created following the steps above. The code along with run scripts are available at Just a Minute Firefox Extension
Sim-OnDemand- personal virtual world as a Service's launcher application is an example of an application packaged and distributed using this method.
第 1 步:使用 Add-on Builder 生成所有必需的文件。
步骤2:将下载的文件解压到您的开发区域。
步骤 3:在您的个人资料扩展文件夹中创建一个文本文件,根据下载的 install.rdf 文件中的 em:id 命名,将解压文件的完整路径放入其中,然后重新启动 Firefox(如有必要,请删除该文本文件以卸载) 。
Step 1: Use the Add-on Builder to generate all the necessary files.
Step 2: Extract the downloaded files into your development area.
Step 3: Create a text file in your profile's extensions folder named according to the em:id in the downloaded install.rdf file, put the full path to your extracted files in it then restart Firefox (delete the text file to uninstall if necesary).
要使用不同的配置文件启动另一个 Firefox 实例,您可以使用以下命令:
这样您就可以运行 2 个不同的 Firefox,并使用其中一个来测试扩展,而不会干扰您经常使用的那个。
To start another instance of firefox with a different profile you can use the following command:
This way you can have 2 different firefox running and use one for testing extensions without messing with the one you use regularly.
有趣的信息。
现在要回答这个问题,我会说:创建一个 Greasemonkey 脚本(或 Chickenfoot、iMacros 等)。
可能会受到更多限制(例如更改 FF UI),但适合大多数需求。
Interesting information.
Now to answer the question, I would say: create a Greasemonkey script (or Chickenfoot, or iMacros, etc.).
Might be more limited (in changing FF UI for example) but good for most needs.
以下是有人想要创建一个最小的 Firefox 扩展的原因。
Here are the reasons why someone would want to create a minimal firefox extension.
附加 SDK 使简单的附加开发变得更加容易。
https://developer.mozilla.org/en-US/Add-ons/SDK
适用于 Mac/Linux 的步骤:
source bin/activate
mkdirplugin_name
cdplugin_name
cfx 初始化
The Add-On SDK makes simple add-on development easier.
https://developer.mozilla.org/en-US/Add-ons/SDK
Steps for Mac/Linux:
source bin/activate
mkdir plugin_name
cd plugin_name
cfx init
我建议在 Firefox 的便携版上进行测试。
I suggest testing on the Portable edition of Firefox.