Skip to content

Chrome Extension starter using Nx workspace and Vue

License

Notifications You must be signed in to change notification settings

stepanroznik/chrome-extension-starter-vue

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chrome Extension Starter Vue

Chrome Extension Starter Logo

Chrome Extension starter using Nx workspace and Vue.

📖 Table of Contents

✨ Features

✅ Nx Workspace

✅ Vue

✅ Typescript

✅ Tailwind CSS

✅ Chrome Types

✅ Live Reload

✅ Very Fast Build

✅ All In One Command

✅ Support Manifest V3

✅ Popup Page

✅ Options Page

✅ Devtools Panel

✅ Background Script

✅ Content Script

🎯 Prerequisites

  • Node.js (>= 16 required)
  • npm package manager (>= 8 required)
  • Chrome

🚀 Getting Started

  1. Install dependencies
npm i
  1. Run development live reload
npm run serve:dev
  1. Open Chrome browser
  2. Go to this url: chrome://extensions
  3. Click on "Developer mode"
  4. Click on "Load unpacked"
  5. Choose the extension directory from this root directory
  6. Yay, you did it! 😏
  7. Now update the code as you want! 😛

ℹ️ More info about developing Chrome extension can be found here

🏗 Project Structure

So the purpose is to take the advantage of the type system of TypeScript and to use the power of Nx workspace to create multiple applications with the powerful framework Vue!

So we have 3 applications:

  1. Popup (apps/extension/popup) - used for the upper popup
  2. Options (apps/extension/options) - used for the options page
  3. DevTools Panel (apps/extension/devtools-panel) - used for the devtools panel

In every Chrome extension we have background script that communicate with the content scripts, which can be found in apps/extension/scripts/background/src/main.ts.

We are also can inject content script which can be found in apps/extension/scripts/content/src/main.ts.

All the applications have already the Chrome types so can just use chrome and the editor will recognize it.

To integrate this app into an existing Nx repository, simply copy the extension folder from ./apps into the apps directory of your repository. Remember to update your .gitignore to include the extension's build files and verify that your dependencies are compatible.

🕹 Commands

Start with development configuration

npm run serve:dev

Start with production configuration.

npm run serve:prod

Build with development configuration.

npm run build:dev

Build with production configuration.

npm run build:prod

📦 Release

I recommend making the release automatic with GitHub actions or other ci service.

  • Run npm run build:prod
  • Bump the version number in manifest.json & package.json (this is done automatically with npm run build:prod)
  • Create a git tag containing the version you are releasing using git tag -a <version>
  • Create zip file from the extension directory
  • Upload the zip to the Chrome developer dashboard

📜 License

MIT

About

Chrome Extension starter using Nx workspace and Vue

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 53.7%
  • TypeScript 22.0%
  • Vue 10.1%
  • HTML 9.2%
  • CSS 3.5%
  • Shell 1.5%