chrome-ext-mv3-starter icon indicating copy to clipboard operation
chrome-ext-mv3-starter copied to clipboard

⚡️ Modernized Chrome Extension Manifest V3 Vite Starter Template

Results 7 chrome-ext-mv3-starter issues
Sort by recently updated
recently updated
newest added

The server is starting fine and says vite v2.9.5 dev server running at: > Local: http://localhost:3309/ > Network: use `--host` to expose But when I go to the page I...

Why the `pnpm run dev` command doesn't use rollup to bundle custom .js files added to the project? If this is intended behaviour (not bundling in dev mode), how can...

[chrome-ext-mv3-starter](https://github.com/xiaoluoboding/chrome-ext-mv3-starter/tree/main)/[src](https://github.com/xiaoluoboding/chrome-ext-mv3-starter/tree/main/src) /manifest.ts line 37: `optional_permissions: ["*://*/*"],` causes error "Permission '`*://*/*`' is unknown or URL pattern is malformed." Suggested fix: Change to: `permissions: ['contextMenus', 'storage'],`

![image](https://user-images.githubusercontent.com/40431305/228859338-88e16f64-5a5a-4c31-9143-50f7e06a9501.png)

Run 'yarn dev' and 'yarn build' on the mac system, and the packaged files are OK, but on the window mac system, it was not run 'mvsw-dev.ts' and 'mvsw-prod.ts'.

it's weird that the background instance is missing! and all of manifest.json is correct. ```json { "manifest_version": 2, "name": "[name]", "version": "0.0.1", "description": "[description]", "options_ui": { "page": "./options/index.html", "open_in_tab": true...