在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:victorporof/firefox-restartless-template开源软件地址:https://github.com/victorporof/firefox-restartless-template开源编程语言:JavaScript 66.1%开源软件介绍:Restartless-TemplateSimple template project for developing restartless Firefox Developer Tools addons. WorkflowThis template allows you to create restartless Firefox add-ons. This means that your workflow can also benefit from it, and reduce the (likely annoying) code->build->install lag. See documentation about setting up a bootstrapped addon extension environment for some in-depth explanation on how to do this. tl;dr: A "Firefox extension proxy file" is a simple way of telling Firefox where an add-on is located, via an absolute path. Whenever you change the contents of the add-on, simply re-enabling it will update it; no need to tediously drag-and-drop-install it anymore. How to iterate fastThe quick and easy versionThis will probably work in most unix-like shell environments, like in OS X and Linux: git clone https://github.com/victorporof/Restartless-Template.git
cd Restartless-Template
./configure -i "your-addon-id" -n "YourAddonName" -d "Your addon description" -a "Your name" -P "default" Caveats: Temporarily, until issue #3 is fixed:
That's it :) Now, after you change something in the add-on, simply re-enable it for it to update automatically. You can do this from the about:addons page in Firefox: click the "Disable", then the "Enable" button for your add-on. The detailed versionStep 0. Clone this repository. Step 1. It's a good idea to customize your add-on's id and name now, before things get too complex. By default, this template has a vanilla
Initially, please try to only use alphanumeric characters for the add-on's id and name. Optionally, you can also specify the add-on's author, version, description etc.:
Step 2. Locate your Firefox profile directory. Read this for more information. It's usually in these folders:
Optionally, you might want to create a new Firefox profile used just for the development of your add-on. This will prevent unexpectedly and accidentally altering your main profile if you make mistakes during the development process. Read more about how to do this here. Step 3. Create a file in the "extensions" directory under your profile directory with the extension's ID as the file name. If there's no "extensions" folder, create it. The extension's ID is in the install.rdf file. For example, with this vanilla template, the extension proxy file name would be Step 4. Set the (plain text) contents of this file to be the path to the directory that contains install.rdf (where you cloned this repository). For example, the extension proxy file's contents could be Step 5. Restart Firefox. A dialog asking you whether "you would like to modify Firefox with the add-on" might show up; please allow the installation and continue. Open Firefox Developer Tools using Ctrl/Cmd+Shift+I and you'll see your new addon in the Toolbox. DebuggingStarting with Firefox 31 (download Aurora), you can easily debug your add-on using the built-in developer tools. Turn this on, then simply go to the about:addons page and click the "Debug" button next to your add-on. Keep in mind that scripts are lazily evaluated, so if no code was executed, no source files will be shown. ThemingStarting with Firefox 29, the developer tools can be "light" or "dark" themed, based on a user preference in the Options panel of the Toolbox. To make your add-on look good regardless of the theme, you should use the .theme-dark #my-node {
color: #f5f7fa;
}
.theme-light #my-node {
color: #ed2655;
} Take a look at this wiki for the recommended pallete used by default throughout the Firefox developer tools. Try using those colors for a consistent look and feel. LocalizingIt's always nice having your add-on available in multiple languages. Add your localized strings to strings.dtd and strings.properties. Generally, Your default language bundle is specified by the chrome.manifest. RemotingThe Firefox Developer Tools have support for remote debugging. The protocol is described in depth here. If you want to make your add-on work with remote debugging, you'll have to support remote targets and allow the add-on to use them. Certain tools in Firefox will always use remote targets, so, for example, your add-on won't show up in the App Manager if remote targets are not supported. Take a look at firefox-client repo for an example use of the remote debugging API. ReleasingSimply To wipe the build directory, use If you use git tags to nicely version your project, you can use PublishingGo to https://addons.mozilla.org/developers/ and publish your new awesome add-on. Read moreThere's some (under development) documentation about the Developer Tools API. If you need help, please ask around on irc.mozilla.org, in #devtools. Thank you. Have fun! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论