With the Quasar CLI, it is incredibly easy to develop and build Browser Extension distributables. Below, we'll explain the two processes in detail.
Start developing a Browser Extension with just one command.
You may or may not have already had a src-bex
folder, but you will definitely have one now. You will also have a set of files under src-bex/www
. These files are the output from the webpack development server. Normally, these files are kept in memory, which is why you wouldn't see them when creating an SPA, but for Browser Extension development, physical files are required in order for the process to work.
Do not edit anything under the src-bex/www
folder, as these changes are overridden via Hot Module Reloading (HMR). This folder is just the built output of your src
folder, so make the changes there instead.
Now that we've created a development environment, we need to load generated browser extension into your browser.
In line with the screenshot above, the following steps must be taken:
chrome://extensions
src-bex
folder.More information about debugging Chrome Browser Extensions can be found in the official documentation.
In line with the screenshot above, the following steps must be taken:
about:debugging
src-bex/manifest.json
file. Note: Firefox requires the manifest file, not the src-bex
folder like Chrome.More information about debugging Firefox temporary addons can be found in the Firefox Extension Workshop.
HMR works with Browser Extension development but does work slightly differently depending on which browser you're developing on. In both cases, the Quasar application being built will reload when changes are made. The quasar application in this instance would refer to changes made to everything under the src
folder.
::: tip
Chrome vs Firefox Nuances - When developing your Browser Extension, you will often need to make changes to the files under the src-bex
folder as well. This will be done when configuring hooks, setting up popups etc. Firefox will see these changes and automatically re-load the Browser Extension. Chrome on the other hand will not. When you have made these changes in Chrome, you will need to navigate to your Extension (see the Chrome section above) and click on the refresh icon in your Development Browser Extension.
:::
When building for production, multiple directories are generated:
The new folder has the following structure:
::: tip
If you want to test out the your-project-name.zip
file, you can do this by dragging the file into the same place you load the Extension in development mode; for Chrome chrome://extensions
and Firefox about:debugging
. See the development screenshots above for more information.
:::
Part of the review process for Browser Extensions in both Chrome and Firefox must allow the relative teams to examine the code being deployed as a live extension. With this in mind, minified code is not allowed. So, to allow for the review process, Quasar will not obfuscate and minify the built code for Browser Extensions.
Given any extension will be ran directly on the user's computer, upload speed isn't a factor to worry about here, so minifying the code isn't necessary.
Since Quasar removes the burden of building and packaging your Browser Extension, once you are finished developing your extension, it is ready to be published. The publishing process differs between browsers, but the official documentation will guide you through the process.