🧩 Plasmo Developers

PD

🧩 Plasmo Developers

Join the community to ask questions about 🧩 Plasmo Developers and get answers from other members.

Join

👾extension

👟framework

🔰newbie

🦉pallas

Uncaught Error: Cannot find module '@plasmohq/storage' (works in prod not dev)

I can't use plasmo storage with a prod build but it works on dev. I'm super confused.

Vite?

Is there any chance to use Plasmo with Vite?

Anyone got react-markdown work with Plasmo?

I am having issues with using react-markdown in Plasmo. Anyone got this working?

AI stream to content script

I am creating a chrome extension which is a content script, I want to stream my AI response and display it token by token. I am able to get the stream with POST request using background script but don't know how to get it to content script token by token by using res.send() or something similar....

2 problems : import component & send messaging

Good morning, I have 2 problems. The first: I need to have child components in the content script. Now if I create the child in the contents folder and import it in the classic Vue way, then I find this component on its own in the injection page and not as a child of my script (img 1 & 2 ) . however, if I insert the child into another folder, it is not displayed on the page at all (img 3) ...
No description

Maximum size for extension bundle/archive you can upload in Google Chrome Store?

I've looked in the Google docs and in the developer portal, but can't find a single place which states what's the maximum size of an extension bundle/archive. Any clues?

Can I use native web components with CSUI?

I tried using Content Scripts UI (CSUI) with a native web component instead of a react component (see below), but I got a bunch of React errors in the browser console referring to a React component. Is there a way to make Plasmo work with native web components or something like Lit? Thanks. ```import type { PlasmoCSConfig, PlasmoGetInlineAnchor } from "plasmo" export const config: PlasmoCSConfig = {...

Error loading {script-name}: ReferenceError: importScripts is not defined

Is this a Plasmo Bug? I am trying to load a module using a dynamic import like this in the content script: const module = await import('../local/app.js'); So far it hasn't worked and I am seeing this error in the console. I am not using importScripts as far as I can tell but this js-loader.js might be. Any clues? Error loading {script-name}: ReferenceError: importScripts is not defined...

Build a sidepanel with plasmo

hey guys, quick question, just starting to build a extension with plasmo,(btw framework is dope ), and i want to build a sidepanel, i've created the template using next.js and now i'm wondering where i need to create sidepanel.tsx in order to work

How can I use sessionStorage in a Plasmo extension?

I'm working on a Plasmo extension and I need some help with sessionStorage. How can I effectively use sessionStorage in a Plasmo extension? Any advice or examples would be greatly appreciated!

Why doesn't window.onload and load event listener work in a content script?

Hi! I am programmatically injecting a content script into the main world with
chrome.scripting.executeScript
chrome.scripting.executeScript
. I am trying to use the following to run my function when DOM has loaded. But it doesn't seem to work, I don't see any console logs at all. Anyone know how I can solve this?...
No description

Chrome storage API vs Dexie.js (IndexedDB)

Anyone using Dexie or something similar instead of the Chrome storage API? Dexie is a wrapper around IndexedDB. I'm considering migrating to using Dexie from the Chrome storage API for a few reasons: - Dexie has database versioning, making it easier to modify your data structures - Dexie has the option to sync to the cloud - Dexie makes it easier to perform queries/search ...

Issues with using react-markdown

Hi, I'm trying to use react-markdown in my extension, but when I try to include it I get a strange error. I've installed it using pnpm install react-markdown and then have imported it in my content.tsx file import Markdown from "react-markdown". I then just try to use it through <Markdown>{markdown}</Markdown>. However, I'm getting the following error: ...

Registering a content message from a library

I want to create a HTTP library for plasmohq, that I can easily include in my extensions, how do I register a background message class from a library?

Firefox not loading extension files

Hi all, I tried loading my extension by going to about:debugging#/runtime/this-firefox and clicking load temporary add-on. I selected the file the manifest.json. The extension doesn't load the icons and html files. This works perfectly well on chrome. Any ideas...
No description

Not able to print an API response in content script despite getting the response in network logs

Have a content script that, when a button is clicked, uses Plasmo's messaging framework to make an API request via a background script Everything works fine: the relevant data is sent, received by the API, and a good response is sent back from the API ('healthy'), but for some reason the background script is not passing the response back to our content script. When we log the response, it's an empty object. Images:...
No description

Chormium-based browser extension to Firefox

Hi, I have created an extension that works fine for all chromium-based browsers using Plasmo, but now i am thinking of make it for firefox browser as well. Can anyone tell me what necessary steps I need to take to achieve it and how can fix various issues, like service workers and all.

anyone using react-markdown?

I am trying to make react-markdown work with Plasmo but no luck so far. The first issue was this: https://github.com/remarkjs/react-markdown/issues/801 ...

Error while comunicating between CS and BGSW.

Hey all! I'm trying to build this extension that reads particular URLs in Discord (web) messages and replaces them with a custom UI that shows images, buttons, etc. This project is for an hackathon and we have a deadline by tomorrow morning, so I guess it's pretty urgent. The UI part works fine, the problem is that I cannot perform fetch calls from the content script since it gets blocked by Discord CSP. So I'm trying to send a message from the content script to the background service worker using @plasmohq/messaging, the problem is that I get a CSP error regarding the connection to ws://localhost:1815 and the messages stay hanging....

Would it be possible to hide DOM changes via shadow DOMs to evade LinkedIn's detection system

The title says it all, LinkedIn doesn't like people using chrome extensions and I want to hide my extension from LinkedIn. The guy who made the "LinkedIn Helper" extension did a great write up about it here: https://bamf.com/bamf-expert-guest-post-linkedin-automation-safety/ Then settled on just creating a browser around LinkedIn so he wouldn't have to inject anything into it....