Skip to content

lukezc90/chrome-extension-template-vue2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

chrome-extension-template-vue2

Chrome extension scaffolding project is based on Vue 2.0, built based on vue-cli 4.

Technology Stack

UI Library

The project uses Ant Design Vue.

If you have other needs, you can choose other UI libraries to use:

Develop

Directory Structure:

|- public              // Public resources, packaged in the dist root directory
  |- background.js     // The background.js file of the chrome extension
|- src                 // source code
  |- assets/           // Static resources, such as pictures
  |- components/       // common components
  |- content-script/   // content-script of chrome extension
  |- options/          // options page of chrome extension
  |- popup/            // popup page of chrome extension
  |- manifest.json     // manifest file of V3
  |- manifest-v2.json  // manifest file of V2,if you use V2 to develop, you can use this file to replace manifest.json
|- vue.config.js       // vue-cli configuration
  1. Configure the manifest.json file

Configure according to development needs.

  1. develop popup page

    if you need to develop the popup page, you can refer to this step.

    popup page .vue file:src/popup/App.vue

    Component or third-party library import in the index.js file which in the src/popup directory.

  2. develop background.js

    if you need to develop background.js, you can refer to this step.

    Modify the background.js file in the public directory.

  3. Other pages development can refer to step 2

Package Release

npm install

Package of Development Environment

Support automatic re-build and hot reload of chrome extension when file modified.

npm run dev

the hot reload is implemented by vue presetvue-web-extension

Package of Production Environment

npm run build

After packaged, a dist folder will be generated in the root directory.
The dist folder contains the following files:

- css/
- js/
- manifest.json
- popup.html
- options.html
- background.js
- ...

You can load this dist folder in chrome extension.


For more information, you can refer to the official documentation:

https://developer.chrome.com/extensions https://developer.chrome.com/extensions/samples

About

An out-of-the-box chrome extension template with vue2

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 47.8%
  • Vue 27.0%
  • HTML 25.2%