Browser extension development plugin for vue-cli 3.0
Browser extension development plugin for vue-cli 3.x
This is intended to be a vue-cli@3.x replacement for https://github.com/Kocal/vue-web-extension.
This plugin changes the serve command for your vue applications.
This new command is only for running a livereload server while testing out your browser extension.
This removes the entrypoint of main.js, and as such will not scaffold a general vue app.
That behavior might change when support for a standalone tab application exists, but for now it is gone.
Packaging and deploying will still be done with yarn build and zipping in up for Chrome, Firefox, or whichever other browser you wish to develop for.
It makes some assumptions about your project setup.
I hope to be able to scaffold an app so that identifying the below in unnecessary.
|- public/
|- icons/
|- Icons for your extension. Should include a 16, 19, 38, 48, 128 px square image
|- src/
|- assets/
|- Static assets in use in your app, like logo.png
|- content_scripts
|- content-script.js
|- options/ (asked during project generation)
|- App.vue
|- options.html
|- options.js
|- popup/
|- router/
|- pages/
|- Index.vue
|- index.js
|- routes.js
|- App.vue
|- popup.html
|- popup.js
|- standalone/
|- router/
|- pages/
|- Index.vue
|- index.js
|- routes.js
|- App.vue
|- standalone.html
|- standalone.js
|- store/
|- actions.js
|- getters.js
|- index.js
|- mutation-types.js
|- mutations.js
|- background.js
|- manifest.json
This can be added to your vuejs project by one of the following methods:
vue ui and searching for this projectvue add browser-extension commandRunning the Livereload server.
This will build and write to the local dist directory.
This plugin will respect the outputDir setting, however it cannot read into passed CLI args, so if you require a custom output dir, be sure to add it in your vue.config.js file.
You can then add this as an unpacked plugin to your browser, and will continue to update as you make changes.
undefinedNOTE: you cannot get HMR support in the popup window, however, closing and reopening will refresh your content.
yarn serve
yarn build
Plugin options can be set inside your vue.config.js:
// vue.config.js
module.exports = {
pluginOptions: {
browserExtension: {
// options...
}
}
}
undefinedcomponentsundefined
Object.<string, boolean>The browser extension components that will be managed by this plugin.
Valid components are:
components: {
background: true,
contentScripts: true
}
undefinedcomponentOptionsundefined
Object.<string, Object>See Component options.
undefinedmanifestSyncundefined
Array<string>['version']Array containing names of manifest.json keys that will be automatically synced with package.json on build.
Currently, the only supported keys are version and description.
undefinedmodesToZipundefined
Array<string>['production']Array containing names of mode in which zipping up will trigger after build.
undefinedapiundefined
'chrome'|'browser''browser'Browser extension API to use.
undefinedusePolyfillundefined
booleantrueWhether to add webextension-polyfill to polyfill WebExtension APIs in chrome.
undefinedautoImportPolyfillundefined
booleantrueWhether to auto import webextension-polyfill using Webpack’s ProvidePlugin.
Some browser extension components have additional options which can be set as follows:
// vue.config.js
module.exports = {
pluginOptions: {
browserExtension: {
componentOptions: {
// <name of component>: <options>
// e.g.
contentScripts: {
entries: {
'content1': 'src/content-script1.js',
'content2': 'src/content-script2.js'
}
}
}
}
}
}
undefinedentryundefined
string|Array<string>Background script as webpack entry using the single entry shorthand syntax.
background: {
entry: 'src/my-background-script.js'
}
undefinedentriesundefined
{[entryChunkName: string]: string|Array<string>}Content scripts as webpack entries using using the object syntax.
contentScripts: {
entries: {
'my-first-content-script': 'src/content-script.js',
'my-second-content-script': 'src/my-second-script.js'
}
}
Some boilerplate for internationalization has been added. This follows the i18n (chrome|WebExtention) spec.
Provided for you is the default_locale option in the manifest, and a _locales directory.
There is some basic usage of it in the manifest, as well as in some of the boilerplate files.
Since this is largely an out of the box solution provided by the browsers, it is heavily encouraged to utilize it.
If you do not want to translate your app, simply delete the public/_locales directory, and no longer use the browser.i18n methods.
This library is following the standard styling of vue projects, and those are really the only tests to perform.
yarn test
We use cookies
We use cookies to analyze traffic and improve your experience. You can accept or reject analytics cookies.