Skip to main content
1 vote
1 answer
170 views

With plasmo 0.90.5, I faced this issue when trying to run my Firefox extension that I built with manifest v3. This issue happens when I try to pass a message to the content script. Uncaught (in ...
Adib Zaini's user avatar
2 votes
0 answers
112 views

I'm building a Chrome extension using Plasmo and a web app using Next.js (App Router). I'm using Supabase for authentication, and I want the auth session to stay in sync between the web app and the ...
Renato Dinis's user avatar
0 votes
0 answers
101 views

I'm building a Chrome extension with the Plasmo and Supabase, where I fetch data from whenever the browser's context menu is opened, using a broadcasted contextmenu event. I aim to dynamically update ...
adm's user avatar
  • 179
0 votes
1 answer
95 views

I am developing an extension with Plasmo and using MUI with REACT. I am having a content script as following: import { Button } from "@mui/material" import type { PlasmoCSConfig } from "...
Jatin Thapar's user avatar
0 votes
1 answer
109 views

I am trying to build browser extension with Plasmo, and I want to use control like react-quill, I can install the package, but it will also need to import the css for quill, in normal react project, ...
Edward's user avatar
  • 30.3k
0 votes
1 answer
50 views

PlasmoCSUI h-full not working On twitter, I want to inject my own element (button) to the end of a list (a row of horizontal buttons), and I want to keep the same button height as them, but I found ...
Shaun's user avatar
  • 615
0 votes
1 answer
69 views

CSUI (content script) showing select options behind div The select options shows up behind the card that select field. The styles are working fine but any time I open like a dropdown thats supposed to ...
Ezra's user avatar
  • 1
0 votes
0 answers
212 views

I am building a website that will use chrome extension for some of its feature, I am using Next Auth and would like to authenticate from my extension whether or not the user is logged in/ has the next ...
DevEnma's user avatar
  • 231
0 votes
1 answer
123 views

I am trying to read a react state when the callback of chrome.tabs.onUpdated.addListener is being called, but it seems the state value is undefined, even though it's set previously. Here is the hook ...
SamHoque's user avatar
  • 3,184
0 votes
0 answers
53 views

I'm currently developing a Twitter browser extension, and I've encountered an issue with injecting AI-generated text, obtained from an API, into Twitter's tweet input field. Although the injection ...
Khizar Aslam's user avatar
0 votes
0 answers
93 views

I'm currently developing a Twitter browser extension that allows users to generate tweets and replies using AI. The extension works well, but I've encountered an issue when there's already an emoji ...
Khizar Aslam's user avatar
0 votes
1 answer
821 views

I'm using React, Typescript, Plasmo, and MaterialUI to develop a Chrome extension. I continued to receive the following errors even after commenting out code for the popup, background and content ...
CuriousCat's user avatar
2 votes
1 answer
175 views

I've just installed Plasmo and generated a initial project. It's react-based but I'm getting Vue errors in WebStorm. npm run dev works without any problems, but I keep getting the red squigly lines ...
Musius's user avatar
  • 95
1 vote
0 answers
1k views

I'm making a browser extension using Plasmo and I need to have the CSUI container fill the anchor, so I can then use CSS to easily position the contents wherever I want using absolute values that are ...
Devkey's user avatar
  • 91
2 votes
0 answers
1k views

I am using Plasmo to create google chrome extensions. My requirement is to invoke a function in a Content Script periodically. I tried to use setInterval() but this was not reliable. I read that using ...
callmekatootie's user avatar