vitesse-webext icon indicating copy to clipboard operation
vitesse-webext copied to clipboard

⚡️ WebExtension Vite Starter Template

Results 32 vitesse-webext issues
Sort by recently updated
recently updated
newest added

With google deciding to make manifest v2 extensions (see https://developer.chrome.com/blog/mv2-transition/) wouldn't it be wise to move the repo to the new format ? I can't find the article but I...

Hi, I'm getting the error 'Uncaught SyntaxError: Cannot use import statement outside a module' when importing axios in background.ts and could not find the way to fix it. I also...

Hello, I'm using `vitesse-webext` to develop a fairly large browser extension where the majority of the code is in the content script (using React and other libraries like MUI and...

The `dev` vite server with the default configs from your template causes a crash on Windows 10 randomly or reliably whenever a new folder on the root drive `C:\` is...

I see that this have been a problem before, but i'm running vite 2.9.5 and still get it. Is there a fix? ![image](https://user-images.githubusercontent.com/21332243/168776313-0ecbfe07-822c-4afa-aa43-e3b292143f8b.png) ![image](https://user-images.githubusercontent.com/21332243/168776398-df7d71a1-1a30-4f5b-8bee-709208fb6914.png)

I have just cloned the latest vitesse-webext project and added the following code, which is sending message correctly. ``` // src/options/Options.vue import { sendMessage, onMessage } from 'webext-bridge' import {...

According to [chrome devtools](https://developer.chrome.com/docs/extensions/mv3/devtools/), *devtool* and *panel* is part of extension. Would be nice to have this as default folder structure.

I've just started setting up the template, but I've hit an issue of the vite server doing a non-stop reloading, as can be seen below https://user-images.githubusercontent.com/4270980/151708117-716f6c0d-b73e-4e6f-80cd-ac45bf6d7eba.mp4 The only changes I've...

Hi, I find the `vitesse-webext` project contains only one `index.global.js` under `contentScripts`. If I want to keep contentScript individual, what should I do? There are some build configs in `vite.config.content.ts`...

I created content script, that search for all the links in current page. For each link, it adds a button right after the link. The problem I encountered, is that...