|
| 1 | +# Vue 3 Typescript Web Extensions Starter |
| 2 | + |
| 3 | +So your boy Thomas over here, while in the middle of building an app, decided to get distracted and web extensions. And since I'm a heavy Vue user, this boilerplate came out of it. |
| 4 | + |
| 5 | +This is a boilerplate to creating cross-browser web extensions using Vue 3 and Typescript. It contains an example options page, popup action, background script, content script, and testing script. |
| 6 | + |
| 7 | +It contains: |
| 8 | + |
| 9 | +- Vue 3 and Typescript Support |
| 10 | +- Cross-platform supporting using [webextension-polyfill-ts](https://github.com/Lusito/webextension-polyfill-ts) |
| 11 | +- Bundling using Laravel Mix |
| 12 | +- Testing with Jest |
| 13 | +- Shattered remnants of my hopes and dreams |
| 14 | + |
| 15 | +Inspired by [this video](https://www.youtube.com/watch?v=kYl271X2LNA). |
| 16 | + |
| 17 | +## Installation |
| 18 | + |
| 19 | +1. Clone this template |
| 20 | +2. Install with `yarn` |
| 21 | +3. `npx mix` to build into `dist` |
| 22 | +4. Enable dev mode in `chrome://extensions/` and upload your extension |
| 23 | + - If you want to develop for Firefox, you need the [web-ext cli](https://extensionworkshop.com/documentation/develop/web-ext-command-reference/) |
| 24 | + |
| 25 | +## Directory Structure |
| 26 | + |
| 27 | +Laravel Mix is rather easy to read, so there isn't really much explaining to do. |
| 28 | + |
| 29 | +- Every Typescript file in the top-level `src/ts` is compiled into the top-level `dist/js` |
| 30 | + - `ui/options.ts` and `ui/popup.ts` are also currently compiled into the top-level `dist/js` |
| 31 | +- Scss files in `src/scss` is compiled into their respective css into the top-level `dist/css` |
| 32 | +- Files in `src/static` are moved into the top-level `dist` |
| 33 | + |
| 34 | +### Uncompiled |
| 35 | + |
| 36 | +```markdown |
| 37 | +src/ |
| 38 | +├─ scss/ |
| 39 | +│ ├─ styles.scss |
| 40 | +├─ static/ |
| 41 | +│ ├─ manifest.json |
| 42 | +│ ├─ options.html |
| 43 | +│ ├─ popup.html |
| 44 | +├─ ts/ |
| 45 | +│ ├─ ui/ |
| 46 | +│ ├─ components/ |
| 47 | +│ ├─ OptionsScreen.vue |
| 48 | +│ ├─ PopupScreen.vue |
| 49 | +│ ├─ example-composition-api.ts |
| 50 | +│ ├─ options.ts |
| 51 | +│ ├─ popup.ts |
| 52 | +│ ├─ background.ts |
| 53 | +│ ├─ content-script.ts |
| 54 | +``` |
| 55 | + |
| 56 | +### Compiled |
| 57 | + |
| 58 | +```markdown |
| 59 | +dist/ |
| 60 | +├─ css/ |
| 61 | +│ ├─ styles.css |
| 62 | +├─ js/ |
| 63 | +│ ├─ options.js |
| 64 | +│ ├─ popup.js |
| 65 | +│ ├─ background.js |
| 66 | +│ ├─ content-script.js |
| 67 | +├─ manifest.json |
| 68 | +├─ options.html |
| 69 | +├─ popup.html |
| 70 | +``` |
| 71 | + |
| 72 | +## Contributing |
| 73 | + |
| 74 | +Not gonna lie, I'm not the brightest bulb in the shed. One time I said that 5 x 22 was 1100. Pull requests are welcomed. |
| 75 | + |
| 76 | +## Todo |
| 77 | + |
| 78 | +- [ ] [Replace feature flag globals during bundling](http://link.vuejs.org/feature-flags). Apparently, this doesn't seem to be possible with Laravel Mix since they [override any user DefinePlugins](https://stackoverflow.com/questions/48906425/laravel-mix-webpack-environment-dependent-variable-for-client-code). If anyone wants to port this to pure Webpack so we can check this off, please feel free. |
0 commit comments