-1

I have developed a chrome extension, now I want to send some data from my extension to my website. I don't want to use backend as in this example: Send Data from chrome extension to Node.js

I want some way I can get the data in my frontend, my website doesn't have a backend. Your help is appreciated.

  • Inject a [content script](/q/4532236) and then send a DOM `CustomEvent` message to your page. – wOxxOm Feb 17 '22 at 14:47

1 Answers1

0

As commented by wOxxOm by using content script as stated here: How to access the webpage DOM rather than the extension page DOM? we can access the DOM of our webpage and make changes and send data to it from our chrome extension.