UNPKG

create-mellowtel-extension

Version:

Create a new Mellowtel browser extension with one command

39 lines (30 loc) 726 B
# Mellowtel Browser Extension This is a browser extension built with Mellowtel. ## Development 1. Install dependencies: ```bash npm install ``` 2. Build the extension: ```bash npm run build ``` For development with hot reloading: ```bash npm run watch ``` 3. Load the extension: - Open Chrome/Edge and navigate to `chrome://extensions` - Enable "Developer mode" - Click "Load unpacked" - Select the `dist` directory ## Structure - `src/`: Source JavaScript files - `background.js`: Background script - `content.js`: Content script - `popup.js`: Popup script - `public/`: Static files - `manifest.json`: Extension manifest - `html/`: HTML files - `icons/`: Extension icons - `dist/`: Build output directory