Home > other >  How to convert a Chrome extension widget into a website?
How to convert a Chrome extension widget into a website?

Time:11-16

I was reading this article on how to convert website into a google chrome extension [1] and I was wondering how could we achieve the oposite? Like imagine a chrome extension that is a widget where you can fill a form. How can we embed the extension into a website?

We use a private chrome extension that is just a "form" to create Jiras. So now we want to make that form into it's own website but wonder if there's a way to "embed" the current widget into a website so we don't have to maintain two repositories.

Any reference you can share?

[1] http://mytypings.com/converting-website-to-a-google-chrome-extension/

CodePudding user response:

You can access your extension like website by going to chrome-extension://<extension-id>/<your popup page>.html

or use the Plasmo Framework to create Tab Pages you want.

  • Related