How do you debug a problem when yarn dev just exits?
Send data from content script or popup to main content script.
Loading a content script on a specific tab
Help: chrome.scripting.executeScript executes only once
Web Worker
Integrating Web Authentication with Plasmo Extension
Using Stripe and setup an API inside the extension
Hey all. Anyone know how to inject styles as a .css file to some webpage?
remount csui on url change
Is there something special you need to do to get a side panel to refresh on changes?
Using microphone in sidepanel
run content script after click on element
Tailwind stops hot reloading
pnpm create plasmo --with-tailwindcss
It usually hot reloads the first change, then stops the hot reloading. I have to pnpm dev
again for changes to take effect (sometimes I have to do it twice).
Is that the way it works? Should I do something extra?...with-firebase example giving chrome web store violation.
How to setup google analytics with plasmo react chrome extension in manifest v3
Is there a way to block a browser extension that uses Plasmo in my React app?
Service workers
Redirects working both in Chrome and Firefox
declarativeNetRequest
(or something else) to generate dynamic rules that work on both chrome and Firefox? I want to redirect network calls to my local server JS script when I am prototyping, but when I am not, I want to use a static link to my website. I will have a toggle button (tied to a variable in storage) to determine which URL to redirect to.
```typescript
async function setRedirectRule(newRedirectUrl: string) {
let newRedirectRule: chrome.declarativeNetRequest.Rule = {...help